我想为我的直方图提供ftol_abs
二进制数,而不是通过geom_histogram
来控制二进制数。 The documentation说我可以通过设置binwidth
参数来完成此操作。但是当我跑步时
bins
我得到一个包含30个bin的输出消息,好像我根本没有指定binwidth。
stat_bin:binwidth默认为范围/ 30。使用'binwidth = x'来调整它。
我尝试将这个论点提交给ggplot(data = iris, aes(x = Sepal.Length)) + stat_bin(bins = 5)
和stat_bin
同样的问题。我做错了吗?
我正在使用ggplot2版本1.0.1。