na_count: Count Missing

View source: R/na_count.R

na_countR Documentation

Count Missing

Description

Count Missing

Usage

na_count(x)

Arguments

x

Vector

Value

integer for number of missing

Examples

x = 1:100
ind = sample(1:100, 10, replace = F)
x[ind] = NA

x = 1:200
na_count(x)

x[ind] = NA
na_count(x)


Ajfrick/ajfhelpR documentation built on June 30, 2023, 12:56 a.m.