Saving results table to external file
save_results(report, file_name = "results.csv", method = utils::write.csv, ...)
Report object that stores validation results. See get_results.
Name of the resulting file (including extension).
Function that should be used to save results table (write.csv default)
The function passed to method
should have 'x' and 'file' arguments. Functions with
different arguments can be passed by creating a wrapper function for it.
See example save_results_methods.
Remaining parameters passed to method
.