我还没有找到一种方法来显示ggplot中增加binwidth的直方图。有办法吗?
答案 0 :(得分:1)
这似乎不再记录,但您仍然可以将手动分档符传递给stat_bin
(和geom_histogram
)。例如:
ggplot(diamonds, aes(carat)) +
stat_bin(breaks = c(0, 0.5, 0.6, 0.7, 1, 2, 5))
或者:
ggplot(diamonds, aes(carat)) +
geom_histogram(breaks = (seq(0, 2, 0.1)) ^ 2, col = 1)
答案 1 :(得分:0)