Trying to get a subset of a data frame based on, to borrow from SQL, values that are not null. Trying something like:
lately <- subset(data, year > 1997 & myvalue != NA)
But that's not right. Any tips, r'sters?
|
Trying to get a subset of a data frame based on, to borrow from SQL, values that are not null. Trying something like:
But that's not right. Any tips, r'sters? |
||||
|
should do it. The reason your version doesn't work is that E.g.:
It is instructive to ponder further on why your version doesn't work. The first parts of the clause returns:
For the first 3 elements we don't need to do any further checking as they are FALSE, but we need to check the second clause for the final three elements in the example. The second clause returns
Hence the combined clause returns:
which will end up not selecting any rows, and hence the zero-row object returned for your example. |
||||
|
|