R/tbl_keep_vars.R
tbl_keep_vars_NA_any.Rd
Keep columns / variables having atlease one NA from a tbl. tbl_keep_vars_NA_any() takes care of both numeric and non numeric columns.
tbl_keep_vars_NA_any()
tbl_keep_vars_NA_any(tbl)
a tbl.
tbl_remove_vars_NA_any
if (FALSE) { tbl <- tibble::tibble(x = letters[1:5] , y = NA , z = c(1,2,3,NA,5) ) tbl %>% tbl_keep_vars_NA_any() }