removeNAs {bioCancer} | R Documentation |
NA
from list or vectorRemoves entries equal NA
, but not mixed entries containing, amongst others, NA
.
Good for use after mapLists
that might return entries equal NA
.
removeNAs(l)
l |
Vector or list. |
Stefan McKinnon Edwards stefan.hoj-edwards@agrsci.dk
removeNAs(list('a'=NA, 'b'=c(NA, 'B'), 'c'='C'))