Evaluator provides a simple Shiny-based web application for interactive exploration of simulation results. This allows a user to interactively review simulation output without generating an extensive report. For users comfortable with R, working directly with the result dataframes will usually be preferable, with the Explorer application provided as a bare-bones data exploration tool.

explore_scenarios(
  input_directory = "~/evaluator/inputs",
  results_directory = "~/evaluator/results",
  styles = NULL,
  intermediates_dir = tempdir(),
  quiet = TRUE,
  ...
)

Arguments

input_directory

Location of input files to be read by read_quantitative_inputs.

results_directory

Directory where the simulations_results.rds file is stored.

styles

Optional full path to CSS file to override default styles.

intermediates_dir

Location for intermediate knit files.

quiet

TRUE to suppress printing of pandoc output.

...

Any other parameters to pass to rmarkdown::run.

Value

Invisible NULL.

Examples

if (FALSE) {
explore_scenarios("~/inputs", "~/results")
}