赞
踩
x <- 1:100
y <- 100 + x*5
windows(300,200);plot(y)
windows(300,200);plot(y,type=”l”) ##type为l表示绘制为直线
x <- rnorm(100,10,5)
plot(x)
x <- rnorm(1000,30,10)
hist(x)
使用核密度估计函数density(),在直方图上绘制密度曲线
hist()函数必须设置freq参数为F才能显示密度曲线
x <- rnorm(1000,30,10)
hist(x,freq=F)
lines(density(x),col=”blue”)
box()
x <- rnorm(100,5,1)
stem(x)
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。