anyMissing {muS2RC} | R Documentation |
Check if there exist any missing values.
anyMissing(x)
x |
data object |
Returns TRUE, if there are any NA's.
Knut M. Wittkowski kmw@rockefeller.edu
is.na
, link{chkMissing}
x <- c(1, 4, NA, 0, 5) anyMissing(x) # [1] TRUE