ggplot2中的条形图

时间:2014-08-24 17:14:41

标签: r ggplot2

知道如何在ggplot2中绘制条形图吗?基础R中的示例粘贴在下面。

stripchart(iris$Sepal.Length, col = "red", method="stack")

enter image description here

1 个答案:

答案 0 :(得分:5)

您可以使用geom_dotplot

library(ggplot2)
ggplot(iris, aes(x = Sepal.Length)) +
  geom_dotplot()

enter image description here