我刚刚开始学习R和gglpot,所以请耐心等待。
我试图在diamonds
数据集中查看每克拉的价格。
我第一次使用
ggplot(diamonds, aes(x = price, y = carat)) + geom_histogram()
然后我收到错误Error: stat_bin() must not be used with a y aesthetic.
接下来我学习了stat = "identity"
并使用了
ggplot(diamonds, aes(x = price, y = carat)) + geom_histogram(stat="identity")
获取Warning: Ignoring unknown parameters: binwidth, bins, pad
以及包含太多垃圾箱的图表。
我尝试将binwidth设置为
ggplot(diamonds, aes(x = price, y = carat)) + geom_histogram(stat="identity", binwidth = 1000)
但警告仍然存在,我的垃圾箱太多了。
我做错了什么?任何帮助表示赞赏。提前谢谢。