R - 对所有可能的列组合执行操作

问题描述 投票:0回答:1

我是 R 的新手,如果问题很普通,请原谅我。 我有一个以分类变量作为列的表。我需要计算两列的每种可能组合之间的列联系数。

为了计算偶然性系数,我使用

ContCoef()
来自
DescTools
ContCoef()
期望两列作为输入。

ContCoef(data[,1], data[,2], correct = TRUE)
r combinations permutation contingency
1个回答
0
投票

谢谢,我设法让它工作使用

PairApply

成功的命令是

`PairApply(comp_testdata,FUN=function(x,y) cor(as.numeric(x),as.numeric(y),method='pearson'),symmetric=TRUE)`
© www.soinside.com 2019 - 2024. All rights reserved.