Number of missing values in a vector
This function calculates the number of values in a vector that are NA.
countNA(x)
x |
A vector. |
This function just shorthand for sum(is.na(x))
, with a shorter name for reference in the vtable
or sumtable
summ
option.
x <- c(1, 1, NA, 2, 3, NA) countNA(x)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.