isSomeNA: Checks whether some object is NA

View source: R/0helpers.R

isSomeNAR Documentation

Checks whether some object is NA

Description

Checks whether some object is NA

Usage

isSomeNA(...)

Arguments

...

objects that need testing

Value

Returns TRUE if there's some object that's an NA, FALSE when all objects are not NA.

Examples

x <- 1
y <- "a"
z <- NA

isSomeNA(x, y)
isSomeNA(x, y, z)

AlexanderLyNL/bstats documentation built on Sept. 11, 2023, 4:10 p.m.