赞
踩
直方图是可视化给定变量值分布的有效方法。
要为R中的一个变量创建直方图,可以使用hist()函数。要为R中的两个变量创建直方图,可以使用以下语法:
- hist(variable1, col='red')
- hist(variable2, col='blue', add=TRUE)
下面的代码显示了如何在R中创建两个变量的直方图
- #make this example reproducible
- set.seed(1)
-
- #define data
- x1 = rnorm(1000, mean=0.6, sd=0.1)
- x2 = rnorm(1000, mean=0.4, sd=0.1)
-
- #plot two histograms in same graph
- hist(x1, col='red')
- hist(x2, col='blue', add=TRUE)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。