我是新与R.我需要累积频率和相对频率来生成一个简单的频率表(如书籍)。
所以我想从像一些简单的数据生成
> x
[1] 17 17 17 17 17 17 17 17 16 16 16 16 16 18 18 18 10 12 17 17 17 17 17 17 17 17 16 16 16 16 16 18 18 18 10
[36] 12 15 19 20 22 20 19 19 19
表所示:
frequency cumulative relative
(9.99,11.7] 2 2 0.04545455
(11.7,13.4] 2 4 0.04545455
(13.4,15.1] 1 5 0.02272727
(15.1,16.9] 10 15 0.22727273
(16.9,18.6] 22 37 0.50000000
(18.6,20.3] 6 43 0.13636364
(20.3,22] 1 44 0.02272727
我知道它应该是简单的,但我不知道怎么办。
我使用此代码一些成果:
factorx <- factor(cut(x, breaks=nclass.Sturges(x)))
as.matrix(table(factorx))
Answer 1:
你靠近! 有几个功能,这将使这容易让你,即cumsum()
和prop.table()
以下是我很可能把这个在一起。 我做了一些随机数据,但有一点是相同的:
#Fake data
x <- sample(10:20, 44, TRUE)
#Your code
factorx <- factor(cut(x, breaks=nclass.Sturges(x)))
#Tabulate and turn into data.frame
xout <- as.data.frame(table(factorx))
#Add cumFreq and proportions
xout <- transform(xout, cumFreq = cumsum(Freq), relative = prop.table(Freq))
#-----
factorx Freq cumFreq relative
1 (9.99,11.4] 11 11 0.25000000
2 (11.4,12.9] 3 14 0.06818182
3 (12.9,14.3] 11 25 0.25000000
4 (14.3,15.7] 2 27 0.04545455
5 (15.7,17.1] 6 33 0.13636364
6 (17.1,18.6] 3 36 0.06818182
7 (18.6,20] 8 44 0.18181818
Answer 2:
该基地的功能table
, cumsum
和prop.table
应该让你有:
cbind( Freq=table(x), Cumul=cumsum(table(x)), relative=prop.table(table(x)))
Freq Cumul relative
10 2 2 0.04545455
12 2 4 0.04545455
15 1 5 0.02272727
16 10 15 0.22727273
17 16 31 0.36363636
18 6 37 0.13636364
19 4 41 0.09090909
20 2 43 0.04545455
22 1 44 0.02272727
随着cbind和列根据自己的喜好的命名,这应该是在未来很容易给你。 从表中函数的输出是一个矩阵,所以这个结果也是一个矩阵。 如果正在对一些大做这将是待办事项这更有效:
tbl <- table(x)
cbind( Freq=tbl, Cumul=cumsum(tbl), relative=prop.table(tbl))
Answer 3:
如果你正在寻找的东西预包装,考虑freq()
从功能descr
包。
library(descr)
x = c(sample(10:20, 44, TRUE))
freq(x, plot = FALSE)
或获得累积百分比,使用ordered()
函数
freq(ordered(x), plot = FALSE)
要添加一个“累积频率”列:
tab = as.data.frame(freq(ordered(x), plot = FALSE))
CumFreq = cumsum(tab[-dim(tab)[1],]$Frequency)
tab$CumFreq = c(CumFreq, NA)
tab
如果你的数据有缺失值,有效百分比列添加到表中。
x = c(sample(10:20, 44, TRUE), NA, NA)
freq(ordered(x), plot = FALSE)
Answer 4:
另一种可能性:
library(SciencesPo)
x = c(sample(10:20, 50, TRUE))
freq(x)
Answer 5:
我的建议是检查agricolae包...检查出来:
library(agricolae)
weight<-c( 68, 53, 69.5, 55, 71, 63, 76.5, 65.5, 69, 75, 76, 57, 70.5,
+ 71.5, 56, 81.5, 69, 59, 67.5, 61, 68, 59.5, 56.5, 73,
+ 61, 72.5, 71.5, 59.5, 74.5, 63)
h1<- graph.freq(weight,col="yellow",frequency=1,las=2,xlab="h1")
print(summary(h1),row.names=FALSE)
文章来源: How to generate a frequency table in R with with cumulative frequency and relative frequency