尝试计算列之间的相关性,但cor()函数仅允许一次比较两列。
> mat <- matrix(c(45,34,1,3,4325,23,1,2,5,7,3,4,32,734,2,53),ncol=4)
> mat
[,1] [,2] [,3] [,4]
[1,] 45 4325 5 32
[2,] 34 23 7 734
[3,] 1 1 3 2
[4,] 3 2 4 53
答案 0 :(得分:5)
cor(mat, method = "spearman")
默认情况下,cor
函数计算列之间的相关性。我不知道您从哪里获得corr
功能,但似乎cor
应该照顾您的需求。