not_na: Returns TRUE if value is not NA

Description Usage Arguments Value See Also Examples

View source: R/predicates.R

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

1
not_na(x, allow.NaN = FALSE)

Arguments

x

A R object that supports is.na an is.nan

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

is.na is.nan

Examples

1
2
3
4
not_na(NA)
not_na(2.8)
not_na("tree")
not_na(c(1, 2, NA, 4))

lorenzwalthert/assertr documentation built on May 20, 2019, 4:06 p.m.