R/tbl_count_vars.R
tbl_count_vars_NA_all.Rd
Count columns / variables having all values are NA from a tbl. tbl_count_vars_NA_all()
takes care of both numeric and non-numeric values.
tbl_count_vars_NA_all(tbl)
tbl | a tbl. |
---|
an integer.
if (FALSE) { tbl <- tibble(x = letters[1:5] , y = NA , z = c(1,2,3,NA,5) ) tbl %>% tbl_count_vars_NA_all() }