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?