R/tbl_count_vars.R
tbl_count_vars_zero_any.Rd
Count columns / variables having atleast one 0 from a tbl.
tbl_count_vars_zero_any(tbl)
tbl | a tbl. |
---|
an integer.
if (FALSE) { tbl <- tibble(x = letters[1:5] , y = NA , z = c(0,2,3,NA,5) , xx= 0:4) tbl %>% tbl_count_vars_zero_any() }