gpt4 book ai didi

r - 错误 : all entries of 'x' must be nonnegative and finite in fisher. 测试

转载 作者:行者123 更新时间:2023-12-03 18:23:05 32 4
gpt4 key购买 nike

我正在 R 中的某个列联矩阵上运行 Fisher Exact 测试。但是,使用以下代码:

for (class in 1:5) {
for (test in c("amp", "del")) {
prefisher <- read.table("prefisher.txt", sep="\t", row.names=1)
for (gene in rownames(prefisher)) {
genemat <- matrix(prefisher[gene,], ncol=2)
print(genemat)
result <- fisher.test(genemat)
write(paste(gene, result$estimate, result$p.value, sep = "\t"), "")
}
}
}

我收到以下错误:
    [,1] [,2]
[1,] 1 0
[2,] 101 287
Error in fisher.test(genemat): all entries of 'x' must be nonnegative and finite

如您所见,矩阵 genemat是非负的和有限的。
str(genemat)返回:
List of 4
$ : int 1
$ : int 101
$ : int 0
$ : int 287
- attr(*, "dim")= int [1:2] 2 2

我究竟做错了什么?

谢谢

最佳答案

您使用 matrix在一行 data.frame 上,这会产生一个具有维度属性的列表(即一种特殊的矩阵)。那不是你想要的。使用 unlist首先使 data.frame 行成为原子向量:

DF <- data.frame(a = 1, b = 101, c = 0, d = 287)
m <- matrix(DF, 2)
str(m)
# List of 4
# $ : num 1
# $ : num 101
# $ : num 0
# $ : num 287
# - attr(*, "dim")= int [1:2] 2 2

fisher.test(m)
#Error in fisher.test(m) :
# all entries of 'x' must be nonnegative and finite

m <- matrix(unlist(DF), 2)
fisher.test(m)
#no error

关于r - 错误 : all entries of 'x' must be nonnegative and finite in fisher. 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29214222/

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