count_na.Rd
Count the number of NA observations
count_na(x)
A vector
A numeric value
count_na(c(2,2,2)) #> [1] 0 count_na(c(2,2,NA)) #> [1] 1