我正在尝试获得直方图。这是我的代码:
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)
当我执行此代码时,我获得下一个图形:
这不是直方图。我的代码错误是什么?
谢谢!