我导入了一个包含一列及其值的csv文件。
a <- read.csv("/home/file.csv")
现在我想要一个频率为
的直方图h <- hist(as.matrix(a))
text(h$mids,h$counts,labels=h$counts, adj=c(0.5,-0.5))
函数adj=c(0.5,-0.5)
究竟是什么?
x <- seq(8,13, 1)
-> that's the first and end value (8,13)
curve(dnorm(x, mean=mean(a$weight), sd=sd(a$weight)), add=T)
现在我有了曲线,但不再是值的频率了。
我也尝试过:h <- hist(as.matrix(a), prob=T)
我无法设置ylab和xlab h <- hist(as.matrix(a), xlab="..", ylab=".." )
它需要默认实验室。