如何识别矩阵中每行不是“NA”的列?

时间:2011-09-16 18:06:24

标签: r matrix

我有一个包含12行和77列的​​矩阵,但只是让我们使用:

p <- matrix(NA,5,7)  
p[1,2]<-0.3  
p[1,3]<-0.5  
p[2,4]<-0.9  
p[2,7]<-0.4  
p[4,5]<-0.6 

我想知道每行哪些列不是“NA”,所以我想得到的是:

[1] 2,3  
[2] 4  
[3] 0  
[4] 5  
[5] 0 

但如果我> which(p[]!="NA"),我会[1] 6 11 17 24 32

我尝试使用循环:

aux <- matrix(NA,5,7)  
for(i in 1:5) {  
    aux[i,]<-which(p[i,]!="NA")  
}

但我刚收到错误:number of items to replace is not a multiple of replacement length

有没有办法做到这一点?提前致谢

1 个答案:

答案 0 :(得分:22)

尝试:

which( !is.na(p), arr.ind=TRUE)

我认为这与您指定的输出信息相关且可能更有用,但如果您真的想要列表版本,则可以使用:

> apply(p, 1, function(x) which(!is.na(x)) )
[[1]]
[1] 2 3

[[2]]
[1] 4 7

[[3]]
integer(0)

[[4]]
[1] 5

[[5]]
integer(0)

甚至与粘贴一起涂抹:

lapply(apply(p, 1, function(x) which(!is.na(x)) ) , paste, collapse=", ")

which函数的输出建议的方法提供逻辑测试的非零(TRUE)位置的行和列:

> which( !is.na(p), arr.ind=TRUE)
     row col
[1,]   1   2
[2,]   1   3
[3,]   2   4
[4,]   4   5
[5,]   2   7

如果arr.ind参数设置为非默认值TRUE,则只能使用R具有的主要顺序确定“向量位置”作为其约定。 R矩阵只是“折叠向量”。

> which( !is.na(p) )
[1]  6 11 17 24 32