Generate report_data_info
report_data_info(
df,
variables = NULL,
output_file = NULL,
output_dir = getwd()
)
A data frame.
A vector includes names of columns .
A string giving the name of the output file. Default is NULL.
A string giving the directory where the output file will be saved. Default is the current working directory.
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
if (FALSE) {
report_data_info(iris, output_file = "iris_report.html")
}