- df_input
data.frame or tibble. Input dataset to generate the summary report on.
- df_input_old
data.frame or tibble. Old input dataset to call diffdf::diffdf() on.
- save_rmd_dir
character. Path to save the .Rmd file to. Defaults to the current
working directory. If NULL, does not save the report to disk.
- save_report_dir
character. Path to save the report to. Defaults to the current
working directory.
- save_rmd_file
character. Path to save the .Rmd file to. Can be either a
file name (e.g., "data_report") or a file path. If a file path is specified,
it must be consistent with save_rmd_dir, if save_rmd_dir is specified. If
there is no file extension in the file path, automatically appends the .Rmd
extension.
- save_report_file
character. Path to save the report to. Can be either a
file name (e.g., "data_report") or a file path. If a file path is specified,
it must be consistent with save_report_dir, if save_report_dir is specified. If
there is no file extension in the file path, automatically appends an extension.
- include_skim
boolean. TRUE to include the data summary with skimr::skim() in the
report. FALSE to exclude.
- include_diffdf
boolean. TRUE to include the data diff with diffdf::diffdf() in the report.
FALSE to exclude. If df_input_old is not specified, automatically set to FALSE.
- output_format
character. Output format of the data report. Defaults to "html." So far, only "pdf" and "html"
are supported.