anyMissing | R Documentation |
Detection of missing values.
anyMissing(x)
x |
any object (though not all are currently supported). |
logical, TRUE is missing values are detected.
is.missing
, which.na
.
anyMissing(1:5)
anyMissing(c(1, NA, 2))
anyMissing(list(a=1:3, b=NA))
anyMissing(data.frame(a=1:3, b=c(NA, 5:6)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.