码迷,mamicode.com
首页 > 编程语言 > 详细

R语言实战 - 基本图形(3)- 直方图

时间:2017-09-24 23:35:18      阅读:389      评论:0      收藏:0      [点我收藏+]

标签:ids   ges   highlight   lin   min   div   nes   实战   jit   

> 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 <- seq(min(x), max(x), length=40)
> yfit <- dnorm(xfit, mean=mean(x), sd=sd(x))
> yfit <- yfit*diff(h$mids[1:2])*length(x)
> lines(xfit, yfit, col="blue", lwd=2)
> box()
> 

技术分享

 

R语言实战 - 基本图形(3)- 直方图

标签:ids   ges   highlight   lin   min   div   nes   实战   jit   

原文地址:http://www.cnblogs.com/wnzhong/p/7588923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!