鼻子上
R 语⾔绘制直⽅图
公开课评课通过在x轴上将值域分割为⼀定数量的组,在y轴上显⽰相应值的频数,展⽰了连续型变量的分布。可以使⽤如下函数创建直⽅图:
hist(x)
其中的x是⼀个由数据值组成的数值向量。参数freq=FALSE表⽰根据概率密度⽽不是频数绘制图形。参数breaks⽤于控制组的数量。在定义直⽅图中的单元时,默认将⽣成等距切分。代码提供了绘制四种直⽅图的代码
par(mfrow=c(2,2)) hist(mtcars$mpg)hist(mtcars$mpg, breaks=12, col="red", xlab="Miles Per Gallon", main="Colored histogram with 12 bins") hist(mtcars$mpg, freq=FALSE, breaks=12, col="red", xlab="Miles Per Gallon", main="Histogram, rug plot, density curve")rug(jitter(mtcars$mpg)) lines(density(mtcars$mpg), col="blue", lwd=2) x <- mtcars$mpg h<-hist(x, breaks=12, col="red", xlab="Miles Per Gallon", main="Histogram with normal curve and box") xfit<-q(min(x), max(x), length=40) yfit<-dnorm(xfit, mean=mean(x), sd=sd(x))
yfit <- yfi 1
2
3
4
5
6
7
8托斯卡纳风格
9
10
11天龙八部影视城
有关爱情的诗句12
13
14
写给朋友的句子
15
16
17
18
19
20
做月子腰疼怎么办
21
22
23
打屁股作文大全
24