Save report as an xlsx file

report_to_xlsx(res, outfile, extrastring = "")

Arguments

res

results list created by run_all_checks

outfile

file path/name to write to

extrastring

optionally display extra info alongside version info, e.g. diff info

Value

xlsx file

See also

Example programs for running data checks diff_reports(), run_all_checks(), run_check()

Examples


if (FALSE) {

ae = haven::read_sas("path/to/ae.sas7bdat")
cm = haven::read_sas("path/to/cm.sas7bdat")
dm = haven::read_sas("path/to/dm.sas7bdat")

all_rec=run_all_checks(verbose = TRUE)

report_to_xlsx(res=all_rec,outfile="check_results.xlsx")


}