Skip to contents

Return TRUE if the value is not a NA.

Usage

isnot_na(x)

Arguments

x

A vector

Value

A boolean vector with the return from the condition check.

Examples


isnot_na(2)
#> [1] TRUE

isnot_na(NA)
#> [1] FALSE