get_df_miss_perc: apply get_miss_perc to all columns and return tibble

View source: R/misc_helpers.R

get_df_miss_percR Documentation

apply get_miss_perc to all columns and return tibble

Description

apply get_miss_perc to all columns and return tibble

Usage

get_df_miss_perc(data)

Arguments

x

is the dataframe or tibble

Examples

## Not run: 
library(tibble)
col1 <- seq(1, 10, 1)
col2 <- c("NA", 5, 7, NA, 41, "NA", 6, 8, "NA", NA)
my_tibble <- tibble(col1 = col1, col2 = col2)
get_df_miss_perc(my_tibble)

## End(Not run)

tknoch8/helpRs documentation built on May 11, 2022, 9:34 p.m.