我正在对R中的一些应变矩阵运行Fisher精确检验。但是,使用此代码:
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
我做错了什么?
由于
答案 0 :(得分:9)
您在一行data.frame上使用matrix
,这会产生一个包含维度属性的列表(即一种特殊的矩阵)。这不是你想要的。使用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