| util_count_missing | R Documentation | 
This function returns the number of missing values (NA) in the input vector.
util_count_missing(x)
| x | A vector. | 
The number of missing values in the input vector.
if(interactive()){
util_count_missing(c(1, 2, 3))  # returns 0
util_count_missing(c(1, NA, 2))  # returns 1
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.