2

I would like to see the number of instances for each bin show up on the graph as well

set.seed(1)
x<-rnorm(1:100)
hist(x)
4

3 回答 3

5

尝试这个

set.seed(1)
x<-rnorm(1:100)
y <- hist(x, plot=FALSE)
plot(y, ylim=c(0, max(y$counts)+5))
text(y$mids, y$counts+3, y$counts, cex=0.75)

这使:

在此处输入图像描述

于 2013-10-24T21:21:09.437 回答
1

另一个更简单的解决方案是在hist(...)方法本身中使用labels=TRUE 。它将包括直方图中每个 bin 顶部的出现次数/计数。

但是,我建议始终在直方图中包含xlimylim

代码:

 set.seed(1)
 x <- rnorm(1:100)
 hist(x, xlim = c(-3,3), ylim = c(1,30), labels = TRUE) 
于 2015-10-27T16:52:12.270 回答
0

这会自动发生。左边叫做“频率”

于 2013-10-24T21:20:26.403 回答