splus2R (version 1.2-2)

is.missing: Check for missing values

Description

Check to see whether the input is either NA or a vector of length 0.

Usage

is.missing(x)

Arguments

x

object to check.

Value

TRUE if the input is a vector of length 0; is.na(x) otherwise.

See Also

anyMissing.

Examples

Run this code
# NOT RUN {
is.missing(numeric(0))
is.missing(NA)
is.missing(c(1,2,3,NA,5))
# }

Run the code above in your browser using DataLab