Skip to contents

Exports an eval_report object to a specified folder

Usage

export_evaluation_report(
  eval_report_obj,
  outfolder = ".",
  plot_format = "png",
  ...
)

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.

Value

A message indicating that the export is done.

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")
}