使用GGPLOT2(R)的直方图中的错误

时间:2013-09-20 08:29:14

标签: r graphics ggplot2

我正在试图获得直方图。这是我的代码:

    ggplot(data, aes(x=skus, fill=as.factor(stars))) +
+     geom_histogram(binwidth=.5, alpha=.5, position="identity") +
+     geom_vline(data=cdf, aes(xintercept=rating.mean,  colour=as.factor(stars)),
+                linetype="dashed", size=1)

当我执行此代码时,我获得了下一个图形:

enter image description here

这不是直方图。我的代码错误是什么?

谢谢!

1 个答案:

答案 0 :(得分:1)

我发现了自己的错误。我将binwidth定义为.5。我只需要增加此速率即可获得像binwidth = 50

这样的良好直方图