Skip to contents

Check if an object is not NA

Usage

not_na(a)

Arguments

a

Object to check

Value

TRUE or FALSE

Examples

not_na(NA)
#> [1] FALSE
not_na(1)
#> [1] TRUE