I'd like to remove the lines in this dataframe that contains NAs across all columns. Below is my example data.frame.

             gene hsap mmul mmus rnor cfam
1 ENSG00000208234    0   NA   NA   NA   NA
2 ENSG00000199674    0   2    2    2    2
3 ENSG00000221622    0   NA   NA   NA   NA
4 ENSG00000207604    0   NA   NA   1    2
5 ENSG00000207431    0   NA   NA   NA   NA
6 ENSG00000221312    0   1    2    3    2

and basically I'd like to get a DF such as :

             gene hsap mmul mmus rnor cfam
2 ENSG00000199674    0   2    2    2    2
6 ENSG00000221312    0   1    2    3    2

Also, I like to know how to only filter for some columns, so I can also get a DF like this:

             gene hsap mmul mmus rnor cfam
2 ENSG00000199674    0   2    2    2    2
4 ENSG00000207604    0   NA   NA   1    2
6 ENSG00000221312    0   1    2    3    2

I know this is straight forward DF manipulation, but I never get it right :-(

Thanks for your answers, Ben

link|improve this question

73% accept rate
feedback

4 Answers

up vote 26 down vote accepted

check also ?complete.cases :

> final[complete.cases(final),]
             gene hsap mmul mmus rnor cfam
2 ENSG00000199674    0    2    2    2    2
6 ENSG00000221312    0    1    2    3    2

na.omit is nicer for just removing all NA's. complete.cases allows partial selection by using part of the dataframe :

> final[complete.cases(final[,5:6]),]
             gene hsap mmul mmus rnor cfam
2 ENSG00000199674    0    2    2    2    2
4 ENSG00000207604    0   NA   NA    1    2
6 ENSG00000221312    0    1    2    3    2

Your solution can't work. If you insist on using is.na, then you have to do something like:

> final[rowSums(is.na(final[,5:6]))==0,]
             gene hsap mmul mmus rnor cfam
2 ENSG00000199674    0    2    2    2    2
4 ENSG00000207604    0   NA   NA    1    2
6 ENSG00000221312    0    1    2    3    2

but using complete.cases is quite a lot more clear, and faster.

link|improve this answer
That is great - I knew na.omit, but never seen complete.cases before. This is exactly why I find R difficult, there is way too many options available ! – Benoit B. Feb 1 '11 at 12:29
feedback

Try na.omit(your.data.frame). As for the second question, try posting it as another question (for clarity).

link|improve this answer
feedback

I prefer following way to check whether rows contain any NAs:

row.has.na <- apply(final, 1, function(x){any(is.na(x))})

This returns logical vector with values denoting whether there is any NA in a row. You can use it to see how many rows you'll have to drop:

sum(row.has.na)

and eventually drop them

final.filtered <- final[!row.has.na,]

For filtering rows with certain part of NAs it becomes a little trickier (for example, you can feed 'final[,5:6]' to 'apply'). Generally, Joris Meys' solution seems to be more elegant.

link|improve this answer
feedback

Well I have found this (my DF if called final)

> t = final[!(is.na(final[,2:6]) ),]
> head(t)
             gene hsap mmul mmus rnor cfam
1 ENSG00000208234    0   NA   NA   NA   NA
2 ENSG00000199674    0   NA   NA   NA   NA
3 ENSG00000221622    0   NA   NA   NA   NA
4 ENSG00000207604    0   NA   NA   NA   NA
5 ENSG00000207431    0   NA   NA   NA   NA
6 ENSG00000221312    0   NA   NA   NA   NA
> dim(t)
[1] 104696      6
> dim(final)
[1] 221147      6

when looking at the DF t with head(t) it seems that the NAs are still there, however looking at the size of the DF with dim(t) some filtering seems to have been done. I find this odd.

Ben

link|improve this answer
see my answer.. – Joris Meys Feb 1 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.