我想geom_dotplot
通过点的形状(而不是文档建议的颜色)来区分两个不同的变量.例如:
library(ggplot2) set.seed(1) x = rnorm(20) y = rnorm(20) df = data.frame(x,y) ggplot(data = df) + geom_dotplot(aes(x = x), fill = "red") + geom_dotplot(aes(x=y), fill = "blue")
即在下面的例子中区分x和y
我想将所有x设置为点,将y设置为三角形.
这可能吗?谢谢!