Drop-in replacement for table() that defaults to useNA = "ifany",
showing NA counts when present.
Examples
x <- c("a", "b", NA, "a", NA)
table(x)
#> x
#> a b <NA>
#> 2 1 2
Drop-in replacement for table() that defaults to useNA = "ifany",
showing NA counts when present.
x <- c("a", "b", NA, "a", NA)
table(x)
#> x
#> a b <NA>
#> 2 1 2