omit_na {mark} | R Documentation |
Omit NA values
Description
Omit NA values
Usage
omit_na(x)
Arguments
x |
A vector of values |
Value
x
which NA
values removes and two attributes of integers
: na
which is the position of NA
values, and valid
for the position of
non-NA
values; empty positions reported as integer(0)
Examples
# Like stats::na.omit but always provides
x <- letters[1:5]
omit_na(x)
x[c(3, 5)] <- NA
omit_na(x)
[Package mark version 0.8.0 Index]