missing_ratio: Missing Ratio

Description Usage Arguments Examples

Description

This function allows you to calculate the missing ratios of variables for a given data set.

Usage

1

Arguments

data

A data set needs to be defined.

Examples

1
2
3
4
5
name <- c('John Doe','Peter Gynn','Jolie Hope')
birth_year <- c(1980, 1985, 1971)
salary <- c(20000,NA,10000)
example_data <- data.frame(name,birth_year,salary)
missing_ratio(example_data)

ayhandis/creditR documentation built on May 9, 2019, 8:41 a.m.