使用R计算相关系数

使用R计算相关系数的函数为:

  1. cor.test(X,Y,method="")

method可以为"spearman","pearson" and "kendall",分别对应三种相关系数的计算和检验。

1 pearson相关系数

  1. > n <- 10
  2. > x <- rnorm(n)
  3. > y <- rnorm(n)
  4. > cor(x,y)
  5. [1] -0.4132864
  6. > cor.test(x,y)
  7. Pearson's product-moment correlation
  8. data: x and y
  9. t = -1.2837, df = 8, p-value = 0.2352
  10. alternative hypothesis: true correlation is not equal to 0
  11. 95 percent confidence interval:
  12. -0.8275666 0.2924366
  13. sample estimates:
  14. cor
  15. -0.4132864

上面给出了相关系数的可信度区间和P-value

2 spearman相关系数和
kendall相关系数

同上,只要把method改成spearman和kendall

参考:http://zoonek2.free.fr/UNIX/48_R/09.html

发表评论

匿名网友

拖动滑块以完成验证
加载失败