is_non_null {schematic} | R Documentation |
Check if all values are not NA
Description
Check if all values are not NA
Usage
is_non_null(x)
Arguments
x |
A vector |
Value
TRUE if the vector has no NA values
Examples
is_non_null(1:5) # TRUE
is_non_null(c(1, NA, 3)) # FALSE
[Package schematic version 0.1.2 Index]