naOmit
removes NAs from input vector. This function has no slot for removed elements while na.omit
does so.
Resulting objects from naOmit
are smaller in size and subsequent execution (on large vectors) is faster (in particular if many NAs get encountered).
Note : Behaves differently to na.omit
with input other than plain vectors. Will not work with data.frames !
naOmit(x)
(vector or matrix) input
vector without NAs (matrix input will be transformed to vector). Returns NULL if input consists only of NAs.
na.fail
, na.omit
# NOT RUN {
aA <- c(11:13,NA,10,NA);
naOmit(aA)
# }
Run the code above in your browser using DataLab