Skip to content
Prev 312485 / 398506 Next

subset data frame by variable with missing value

Le vendredi 30 novembre 2012 ? 07:27 -0800, ramoss a ?crit :
missing <- test[is.na(test$myvalue),]
or
missing <- subset(test, is.na(myvalue))


Regards