我一直在拼命寻找一种方法来计算多变量相关矩阵,在 R 中具有显着性。如果这非常困难,那么两个具有显着性的变量之间的多变量相关就足够了。
到目前为止我已经尝试过:
library(polychor)
poly <- polychor(var1,var2)
poly <- polychor(DatM) #where DatM is a DF converted to matrix
library(polycor)
hetcor(Dat2) #I am however uncertain hetcor is something I would want if I am looking for polychoric correlation.
library(psych)
polychoric(Dat$for2a,smooth=TRUE,global=TRUE,polycor=FALSE, ML = FALSE, std.err=TRUE)
这些都没有意义。我已经读过置换检验 [可以给我意义] [1] 对于每个相关对的 corr=0 假设。包 coin 和 lmPerm 确实允许计算排列测试。但是,我不确定如何。
在此先感谢,赫尔吉