not_na {assertr} | R Documentation |
Returns TRUE if value is not NA
Description
This is the inverse of is.na
. This is a convenience
function meant to be used as a predicate in an assertr
assertion.
Usage
not_na(x, allow.NaN = FALSE)
Arguments
x |
|
allow.NaN |
A logical indicating whether NaNs should be allowed (default FALSE) |
Value
A vector of the same length that is TRUE when the element is not NA and FALSE otherwise
See Also
Examples
not_na(NA)
not_na(2.8)
not_na("tree")
not_na(c(1, 2, NA, 4))
[Package assertr version 3.0.1 Index]