generate_report: Generates an EDA report by plotting graphs and tables for the...

Description Usage Arguments Value Examples

View source: R/eda.R

Description

Generates an EDA report by plotting graphs and tables for the numeric variables, categorical variables, NA values and correlation in a dataframe

Usage

1
generate_report(dataframe, cat_vars, num_vars)

Arguments

dataframe

tbl. The dataframe to be inspected.

cat_vars

vector of character strings of the names of the categorical variables.

num_vars

vector of character strings of the names of the numeric variables.

Value

It returns True on successful execution else returns False

Examples

1
2
3
4
X <- dplyr::tibble(type = c('Car','Bus','Car'), height = c(10,20,30))
cat_vars <- c('type')
num_vars <- c('height')
generate_report(X, cat_vars, num_vars)

UBC-MDS/edar documentation built on April 2, 2020, 3:57 a.m.