powered by
Find and count NA values in each row observation of a dataset.
checkna(X)
A data frame summarizing the numbers of NA by rows.
A dataset.
X <- data.frame( v1 = c(NA, rnorm(9)), v2 = c(NA, rnorm(8), NA), v3 = c(NA, NA, NA, rnorm(7)) ) X checkna(X)
Run the code above in your browser using DataLab