这是我在(2021年更新:链接失效... http://s.yunio.com/87HT7f)中的数据文件,请下载并保存为mydata。
y<-scan("mydata")
hist(y,breaks=c(0,60,70,80,90,100),freq=TRUE)
axis(2,at=seq(0,20,length.out=5),labels=c(0,5,10,15,20))
有两个问题:
1.Warning message:
In plot.histogram(r, freq = freq1, col = col, border = border, angle = angle, :
the AREAS in the plot are wrong -- rather use freq=FALSE
我只想要频率而不是概率,在 y 轴上计数的次数,如何使警告消息消失?
2.运行时
axis(2,at=seq(0,20,length.out=5),labels=c(0,5,10,15,20))
20
y轴上没有。