Generate report_data_info

report_data_info(
  df,
  variables = NULL,
  output_file = NULL,
  output_dir = getwd()
)

Arguments

df

A data frame.

variables

A vector includes names of columns .

output_file

A string giving the name of the output file. Default is NULL.

output_dir

A string giving the directory where the output file will be saved. Default is the current working directory.

Value

Report generated to the local file. It contains information about variables types, data dimensions, missing values, potential ID/redundant columns, outliers and mismatched value types metrics for

Examples

if (FALSE) {
report_data_info(iris, output_file = "iris_report.html")
}