gpt4 book ai didi

r - r 中的卡方 p 值矩阵

转载 作者:行者123 更新时间:2023-12-02 09:31:29 24 4
gpt4 key购买 nike

有什么方法可以找到“R”中的卡方 p 值矩阵(属性之间具有 p 值的矩阵)?

例如,考虑iris 数据集。我正在寻找如下矩阵:

|                | Sepal length | Sepal width | Petal length | Petal width | Species |
|----------------|--------------|-------------|--------------|-------------|---------|
| Sepal length | | | | | |
| Sepal width | | | | | |
| Petal length | | | | | |
| Petal width | | | | | |
| Species | | | | | |

矩阵的元素将是 iris 数据集的 (i,j) 变量的卡方值。

最佳答案

如果这就是您想要的,考虑只有其中一列是分类变量,试试这个:

chisqmatrix <- function(x) {
names = colnames(x); num = length(names)
m = matrix(nrow=num,ncol=num,dimnames=list(names,names))
for (i in 1:(num-1)) {
for (j in (i+1):num) {
m[i,j] = chisq.test(x[,i],x[,j],)$p.value
}
}
return (m)
}
mat = chisqmatrix(iris)

关于r - r 中的卡方 p 值矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32732582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com