繁体   English   中英

计算R中矩阵各列之间的相关性

[英]Calculating the correlation between various columns of a matrix in R

我在 R 中有以下矩阵mat

      x  y  z
rowA -1  1  2
rowB -1 -2 -1
rowC  2  1 -1

如何计算矩阵各列(例如corr(x, y)corr(y, z)corr(x, z) )之间的相关性,而不是将列分成向量?

你可以做:

#gives pairwise
COR = cor(M)
# to get 1 vs 2, 1 vs 3 and 2 vs 3
COR[upper.tri(COR)]

我们可以使用combn创建一次取 2 个列名的组合,从矩阵中子集组合,然后计算它们之间的相关性。

combn(colnames(mat), 2, function(x) cor(mat[, x[1]], mat[, x[2]]))
#[1]  0.5 -0.5  0.5

数据

mat <- structure(c(-1L, -1L, 2L, 1L, -2L, 1L, 2L, -1L, -1L), .Dim = c(3L, 
3L), .Dimnames = list(c("rowA", "rowB", "rowC"), c("x", "y", "z")))

底座 R:

cor_df <- data.frame(vars = row.names(cor(mat)), cor(mat), row.names = NULL)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM