Learn R Programming

extdplyr (version 0.1.5)

check_missing: Check missing rate in variables.

Description

Check missing (NA) proportion or counts of variables. This function works like summarize_at where the missing rate or count for the selected columns are returned.

Usage

check_missing(data, ..., ret_prop = TRUE)

check_missing_(data, ..., .dots, ret_prop = TRUE)

Arguments

data
...

Pass to tidyselect. See [dplyr::dplyr_tidy_select] for details.

ret_prop

Whether to return the rate of missing (default) or counts.

.dots

Used in conjunction with ... to support both explicit and implicit arguments.

Functions

  • check_missing_: SE version of check_missing.