This function calculates the proportion of values in a vector that are NA.
propNA(x)
This function just shorthand for mean(is.na(x))
, with a shorter name for reference in the vtable
or sumtable
summ
option.
x <- c(1, 1, NA, 2, 3, NA)
propNA(x)
#> [1] 0.3333333