Skip to contents

Saving results table to external file

Usage

save_results(report, file_name = "results.csv", method = utils::write.csv, ...)

Arguments

report

Report object that stores validation results. See get_results.

file_name

Name of the resulting file (including extension).

method

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.