We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
df_shapes <- data.frame(shape = factor(0:24)) p <- ggplot(df_shapes, aes(shape=shape)) + geom_point(aes(shape=shape, x=0, y=0), size=5, fill="red") + facet_wrap(~shape) + scale_shape_manual(values=df_shapes$shape, guide="none")
ggplotly(p)