知道如何在ggplot2中绘制条纹图吗?下面是基R中的示例。
stripchart(iris$Sepal.Length, col = "red", method="stack")

发布于 2014-08-25 07:44:59
您可以使用geom_dotplot
library(ggplot2)
ggplot(iris, aes(x = Sepal.Length)) +
geom_dotplot()

https://stackoverflow.com/questions/25474242
复制相似问题