Exports an eval_report object to a specified folder
export_evaluation_report.Rd
Exports an eval_report object to a specified folder
Arguments
- eval_report_obj
The eval_report object to be exported.
- outfolder
The output folder to export the results to. Default "." for current working directory.
- plot_format
The format of the plots to export (default: "png").
- ...
Additional arguments to be passed to ggsave while exporting identity_modelparams. For instance use
width = 20
to adjust the width of the plot identity_modelparams.
Details
This function exports the data contained in the eval_report object to individual files in the specified folder. The exported data includes model parameters, model dispersion, aggregated performances, performances by parameters, and evaluation plots.
Examples
if (FALSE) {
eval_report <- evaluation_report()
export_evaluation_report(eval_report, "output_folder")
}