每箱平均值的直方图

时间:2012-11-16 00:15:00

标签: r ggplot2

我正在尝试创建一个直方图,其中bin高度是落入每个bin的值的平均值。以下p2的代码是我认为可行的。

library(ggplot2)
m <- mtcars[1:20, ];
p <- ggplot(m, aes(x = mpg)) + geom_histogram(binwidth = 5);
p <- p + aes(weight = wt); # works, but is the sum of the wt
p2 <- p + aes(weight = wt / ..count..); # does not work, but the idea I am going for

对不起,如果我在这里遗漏了一些明显的东西,但我很感激帮助。

2 个答案:

答案 0 :(得分:3)

您现在可以使用<(sort file)

stat_summary_bin

enter image description here

答案 1 :(得分:2)

你可以用这样的方法计算方法:

m <- mtcars[1:20, ];
m$br <- cut(m$mpg,hist(m$mpg,5,plot=F)$breaks);
mean.wt <- tapply(m$wt,m$br,mean);
m2 <- data.frame(mpg.bin=names(mean.wt),mean.wt);
ggplot(m2,aes(x=mpg.bin,y=mean.wt)) + geom_bar();

enter image description here