powered by
Omit NA values
omit_na(x)
x which NA values removes and two attributes of integers: na
x
NA
integers
na
which is the position of NA values, and valid for the position of non-NA values; empty positions reported as integer(0)
valid
integer(0)
A vector of values
# Like stats::na.omit but always provides x <- letters[1:5] omit_na(x) x[c(3, 5)] <- NA omit_na(x)
Run the code above in your browser using DataLab