Description Usage Arguments Value Examples
Find rows and columns in which all values are NA's
1 2 3 | all_na_rows(x)
all_na_columns(x)
|
x |
A data frame or a matrix. |
A logical vector with rows/columns in which all values are
NA
indicated as TRUE
.
1 2 3 4 5 | x <- matrix(c(NA, 1, 2, NA, 3, 4, NA, NA, NA), nrow = 3)
x
all_na_rows(x)
all_na_columns(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.