checkna | R Documentation |
Find and count NA values in each row observation of a data set.
checkna(X)
X |
A matrix or data frame. |
A data frame summarizing the numbers of NA by rows.
dat <- data.frame(
v1 = c(NA, rnorm(9)),
v2 = c(NA, rnorm(8), NA),
v3 = c(NA, NA, NA, rnorm(7))
)
dat
checkna(dat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.