not.na: Not NA

View source: R/not.na.R

not.naR Documentation

Not NA

Description

Opposite of is.na(). 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


quickcode documentation built on April 11, 2025, 5:49 p.m.