4

嗨,我正在尝试在 ggplot 中绘制直方图,但我的数据没有所有值,而是值和出现次数。

value=c(1,2,3,4,5,6,7,8,9,10)
weight<-c(8976,10857,10770,14075,18075,20757,24770,14556,11235,8042)
df <- data.frame(value,weight)
df
   value weight
1      1   8976
2      2  10857
3      3  10770
4      4  14075
5      5  18075
6      6  20757
7      7  24770
8      8  14556
9      9  11235
10    10   8042

任何人都会知道如何对值进行分箱或如何绘制分箱值的直方图。
我想得到一些看起来像的东西

    bin  weight
1   1-2   19833
2   3-4   24845
...
4

3 回答 3

2

这是一种对数据进行分箱的方法:

df$bin <- findInterval(df$value,seq(1,max(df$value),2))
result <- aggregate(df["weight"],df["bin"],sum)
# get your named bins automatically without specifying them individually
result$bin <- tapply(df$value,df$bin,function(x) paste0(x,collapse="-"))

# result
   bin weight
1  1-2  19833
2  3-4  24845
3  5-6  38832
4  7-8  39326
5 9-10  19277

# barplot it (base example since Roman has covered ggplot)
with(result,barplot(weight,names.arg=bin))
于 2012-09-20T12:45:39.747 回答
2

我会添加另一个变量来指定分箱,然后

df$group <- rep(c("1-2", "3-4", "5-6", "7-8", "9-10"), each = 2)

使用 ggplot 绘制它。

ggplot(df, aes(y = weight, x = group)) + stat_summary(fun.y="sum", geom="bar")

在此处输入图像描述

于 2012-09-20T12:46:32.770 回答
0

只需扩展您的数据:

value=c(1,2,3,4,5,6,7,8,9,10)
weight<-c(8976,10857,10770,14075,18075,20757,24770,14556,11235,8042)
dat = rep(value,weight)
# plot result
histres = hist(dat)

如果您想要直方图数据的详细信息,则 histres 包含一些可能有用的信息。

于 2012-09-20T12:43:18.103 回答