Count columns / variables having atleast one 0 from a tbl.

tbl_count_vars_zero_any(tbl)

Arguments

tbl

a tbl.

Value

an integer.

Examples

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() }