miss_frac: percentage of missings for each variable in a data.frame

View source: R/shorthands.R

miss_fracR Documentation

percentage of missings for each variable in a data.frame

Description

This functions simply reports the number of missings as the percentage of the maximum number of rows. It also works on single variables.

Usage

miss_frac(df, vars = 1:NCOL(df))

Arguments

df

data.frame or variable

vars

subset of variables, defaults to all

Examples

fruits = c('apple', 'banana', NA, 'pear', 'pinapple', NA)
pets = c('cat', 'dog', 'anteater', NA, NA, NA)
favorites = data.frame(fruits, pets)
miss_frac(favorites)
miss_frac(favorites$fruits)
miss_frac(favorites, 2)

rubenarslan/formr documentation built on Feb. 6, 2024, 1:18 a.m.