如何在 R 中绘制频率分布?我不想对值进行分类。我只想绘制每个值的频率。该hist
函数坚持对值进行分箱,除非我手动指定分箱(真的很乏味,因为我事先不知道这些值)。
问问题
9492 次
3 回答
7
你可以你plot
的table
数据:
xx<-sample(1:10,100,replace=TRUE)
plot(table(xx))
于 2012-07-12T14:58:22.683 回答
1
你试过 s.distri {ade4} 吗?http://pbil.univ-lyon1.fr/ade4/ade4-html/s.distri.html
library(ade4)
xy <- cbind.data.frame(x = runif(200,-1,1), y = runif(200,-1,1))
distri <- data.frame(w1 = rpois(200, xy$x * (xy$x > 0)))
s.value(xy, distri$w1, cpoi = 1)
于 2012-07-12T14:57:45.160 回答
1
table(sample(1:10,20,replace=T))
于 2012-07-12T14:59:58.547 回答