下面绘制了一个直方图,其中最左边的点为0。
myplot = ggplot(df,aes(x = myvar)) +
geom_histogram(aes(y = ..density..), binwidth = .3)
我希望直方图有一个以0为中心的bin。(如果你想知道我为什么要做这么古怪的事情 - 这是为了说明直方图的一些弱点。)
答案 0 :(得分:7)
您可以在breaks
,(stat_bin
来电...
)
geom_histogram
参数传递给stat_bin
myplot <- ggplot(df,aes(x = myvar))+
geom_histogram(aes(y = ..density..), breaks = seq(0,5,by=1))
这会覆盖bindwidth
和origin
有关详细信息,请参阅stat_bin的帮助。
您可能还会发现origin
一个有用的参数,(或许设置origin = 0
),但不能与breaks
一起使用!