not.naR Documentation

Not NA

Description

Check if entry is not NA

Usage

not.na(x)

Arguments

x

vector entry

Value

a boolean value to indicate if entry is NA

Examples

not.na(NA) # FALSE
not.na(NULL) # logical(0)
if(not.na(45)) message("something") # TRUE