Get column / variable names having atleast one NA from a tbl.

tbl_get_vars_NA_any(tbl)

Arguments

tbl

a tbl.

Value

a cheracter vector contaning variable names.

Examples

if (FALSE) { tbl <- tibble(x = letters[1:5] , y = NA , z = c(1,2,3,NA,5) , xx= 1:5) tbl %>% tbl_get_vars_NA_any() }