私は、R に有意性があるポリコリック相関行列を計算する方法を必死に探していました。それが非常に難しい場合は、有意性のある 2 つの変数間のポリコリック相関で十分です。
私がこれまでに試したこと:
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)
これらはどれも重要ではありません。各相関ペアのcorr = 0仮説の順列検定[重要性を与えることができる][1]を読みました。パッケージ coin および lmPerm を使用すると、順列テストを計算できます。ただし、方法がわかりません。
前もってありがとう、ヘルギ