stat_summary_bin在x轴刻度

时间:2017-11-28 22:32:03

标签: r ggplot2 binning

如何让ggplot的stat_summary_bin以指定的x轴值进行汇总?例如,在下面的图中我想要在x = -1,0,1,2等处的摘要。现在它在-1.5,-0.5,0.5和1.5。

df = data.frame(x=rnorm(1000), y=rnorm(1000))
ggplot(df, aes(x=x, y=y)) +
stat_summary_bin(binwidth=1)

enter image description here

0 个答案:

没有答案