We have a data frame from a csv-file. The data frame DF has columns that contain observed values and a column (VaR2) that contains the date at which a measurement has been taken. If the date was not recorded, the csv-file contains the letters 'NA'.

Var1  Var2 
10   2010/01/01
20   NA
30   2010/03/01

We would like to use the subset command to define a new data frame new_DF such that it only contains rows that have an 'NA' value. In the example given, only row 2 would be contained in the new DF.

The method:

new_DF<-subset(DF,DF$Var2=="NA") 

does not work, the resulting data frame has now row entries.

If in the original csv-file the letters 'NA' are exchanged with the letters 'NULL', the same method produces the desired result: new_DF<-subset(DF,DF$Var2=="NULL"). How can I get this method working, if for the character string the letters 'NA' are provided in the original csv-file?

link|improve this question

feedback

2 Answers

NA is a special value in R, do not mix up the NA value with the "NA" string. Depending on the way the data was imported, your "NA" and "NULL" cells may be of various type (the default behavior is to convert "NA" strings to NA values, and let "NULL" strings as is).

If using read.table() or read.csv(), you should consider the "na.strings" argument to do clean data import, and always work with real R NA values.

An example, working in both cases "NULL" and "NA" cells :

DF <- read.csv("file.csv", na.strings=c("NA", "NULL"))
new_DF <- subset(DF, is.na(DF$Var2))
link|improve this answer
1  
Thanks for your answer. If I understand it correctly the first statement would do the same as Df[Df=='NA']<-NA in the example of Joris? The (small) difference then would be that it is done in your statment direcly in the beginning, when the data frame is created (this is a very clean programming method and I therefore like it). – John Nov 2 '11 at 14:42
Exactly. Joris suggested to replace "NA" strings by NA values manually, here i only suggest to use the "na.strings" feature of read.table() to achieve the same purpose. – maressyl Nov 2 '11 at 15:33
It's cleaner doing this way indeed. Hence +1 – Joris Meys Nov 2 '11 at 21:35
feedback

Never use =='NA' to test for missing values. Use is.na() instead. This should do it:

new_DF <- DF[rowSums(is.na(DF)) > 0,]

or in case you want to check a particular column, you can use

new_DF <- DF[(is.na(DF$Var),]

In case you have NA character values, first run

Df[Df=='NA'] <- NA

to replace them with missing values.

link|improve this answer
Thanks for your fast answer (this was quick)! Indeed, due to the csv-delivery of the data, the 'NA' are character values and your second statement might be very useful. Can you also clarify your first statement? The use of rowSums() is not clear for me, since I will only check a particular column (there are plenty of columns). If that particular column (in the example it would be column Var2) has there an 'NA' character string (I will replace it with your second statement), then I would like to choose the entire row to be part of the new data frame. – John Nov 2 '11 at 14:29
@John : updated. THe point is to use is.na, I wrongly interpreted you wanted to check all variables. – Joris Meys Nov 2 '11 at 21:34
Thanks for your clarification Joris! – John Nov 4 '11 at 10:32
feedback

Your Answer

 
or
required, but never shown

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