Skip to content
Prev 156627 / 398503 Next

detecting null values in a CSV file

You can always do this if they are single valued vectors:

if ((!is.na(data_filter)) & (!is.na(trigger)) & (data_filter == trigger)) ....

This will catch the condition where either is an NA and therefore not
do the final compare which was giving your error.
On Fri, Sep 19, 2008 at 9:48 AM, Jason Thibodeau <jbloudg20 at gmail.com> wrote: