码迷,mamicode.com
首页 > 其他好文 > 详细

频率分布折线图与总体密度曲线

时间:2016-08-14 14:39:30      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

 

R语言举例

> x = c(29.6, 28.2, 19.6, 13.7, 13.0, 7.8, 3.4, 2.0, 1.9, 1.0, 0.7, 0.4, 0.4, 0.3, 0.3, 0.3, 0.3, 0.3, 0.2, 0.2, 0.2, 0.1, 0.1, 0.1, 0.1, 0.1)
> a = hist(x,breaks=seq(-3,3,by=0.5))
> lines( c(min(a$breaks), a$mids, max(a$breaks)), c(0,a$counts,0), type=l )

频率分布折线图与总体密度曲线

标签:

原文地址:http://www.cnblogs.com/gispathfinder/p/5770103.html

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