R/counters.R
prop_na.Rd
Find the proportion of values of x that are NA.
x
NA
prop_na(x)
A vector to check.
The proportion of values of x that are NA.
mean(is.na(x))
Other counting wrappers: count_diff(), count_in(), count_na(), count_out(), na_in(), na_out(), na_rep(), prop_distinct(), prop_in(), prop_out(), what_in(), what_out()
count_diff()
count_in()
count_na()
count_out()
na_in()
na_out()
na_rep()
prop_distinct()
prop_in()
prop_out()
what_in()
what_out()
prop_na(c("VT", "NH", NA, "ME")) #> [1] 0.25