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