Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这听起来像是一个重复的问题,但希望不是。在基本的R graphics直方图函数中,我们有一个选项breaks="FD",它为直方图提供了合理大小的 binsize,我们有任何类似的简单选项ggplot2吗?或者更好的是我们可以在 中使用相同的选项ggplot2吗?
R graphics
breaks="FD"
ggplot2
我明白你可以调整binwidthin geom_histogram,但我正在寻找一种更简单的方法来产生美观和共鸣binsize。
binwidth
geom_histogram
binsize
set.seed(42) x <- rnorm(1000) hist(x,breaks="FD") library(ggplot2) breaks <- pretty(range(x), n = nclass.FD(x), min.n = 1) bwidth <- breaks[2]-breaks[1] df <- data.frame(x) ggplot(df,aes(x))+geom_histogram(binwidth=bwidth,fill="white",colour="black")