Given the input files and the analysis summary file, create a basic one- page summary with an overview of the results per domain and scenario. Intended as a skeleton showing how the results could be displayed at an executive level.

risk_dashboard(
  input_directory = "~/evaluator/inputs",
  results_directory = "~/evaluator/results",
  output_file,
  intermediates_dir = tempdir(),
  quiet = TRUE,
  ...
)

Arguments

input_directory

Location of input files read by read_quantitative_inputs.

results_directory

Directory where the simulation_results.rds file is located.

output_file

Full path to the desired output file.

intermediates_dir

Location for intermediate knit files.

quiet

TRUE to suppress printing of pandoc output.

...

Any other parameters to pass to rmarkdown::render

Value

Default return values of the rmarkdown::render function.

Examples

if (FALSE) {
risk_dashboard("~/inputs", "~/simulations")
}