Description Usage See Also Examples
Deselect columns that are all NA
1 |
1 2 3 4 5 6 7 8 9 10 11 | library(tidyverse)
test_data <-
tibble(A = rep(NA_character_, 5),
B = LETTERS[1:5],
C = 1:5,
D = rep("Z", 5))
test_data
deselect_if_all_na(test_data)
deselect_if_all_same(test_data)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.