R/tbl_count_vars.R
tbl_count_vars_zero_all.Rd
Count columns / variables having all values are 0 from a tbl.
tbl_count_vars_zero_all(tbl)
tbl | a tbl. |
---|
an integer.
if (FALSE) { tbl <- tibble(x = letters[1:5] , y = LETTERS[1:5] , z = 0 ) tbl %>% tbl_count_vars_zero_all() }