Description Usage Arguments Value See Also Examples
View source: R/tbl_keep_vars.R
Keep columns / variables having all values are NA from a tbl. tbl_keep_vars_NA_all() takes care of both  numeric and non numeric columns.
1  | tbl_keep_vars_NA_all(tbl)
 | 
tbl | 
 a tbl.  | 
a tbl.
1 2 3 4 5  | ## Not run: 
 tbl <- tibble::tibble(x = letters[1:5] , y = NA , z = c(1,2,3,NA,5) )
 tbl %>% tbl_keep_vars_NA_all()
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.