Skip to contents

Returns the number of missings in a variable or dataset. If missings are an explicit level in a factor variable, this function defaults to reporting them anyway.

Usage

n_missing(x, exclude = NA)

Arguments

x

variable

exclude

only needed for factors. defaults to NA (count level=missing as missing), setting to 0 allows you to count level=missing as nonmissing

Examples

data(beavers)
beaver1$activ[1:10] = NA
n_missing(beaver1$activ)
#> [1] 10
beaver1$activ = factor(beaver1$activ, exclude = NULL)
sum(is.na(beaver1$activ))
#> [1] 0
n_missing(beaver1$activ)
#> [1] 10
n_missing(beaver1$activ, exclude = NULL)
#> [1] 0