标签: r ggplot2
知道如何在ggplot2中绘制条形图吗?基础R中的示例粘贴在下面。
stripchart(iris$Sepal.Length, col = "red", method="stack")
答案 0 :(得分:5)
您可以使用geom_dotplot:
geom_dotplot
library(ggplot2) ggplot(iris, aes(x = Sepal.Length)) + geom_dotplot()