ggplot binwidth无效

时间:2017-09-02 08:13:15

标签: r ggplot2

我刚刚开始学习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)

但警告仍然存在,我的垃圾箱太多了。

我做错了什么?任何帮助表示赞赏。提前谢谢。

0 个答案:

没有答案