Read experiment scenario information from the model inputs Excel file, and save to a location in the global package environment.

InitializeScenarios(loadFromExcel = TRUE, ...)

Arguments

loadFromExcel

If TRUE, initialize the scenarios list from the model inputs Excel file. If FALSE, initialize with a blank scenarios table.

...

See loadScenarios()

Value

NULL (invisible)

Examples

if (FALSE) {
library(pacehrh)

pacehrh::InitializePopulation()
pacehrh::InitializeScenarios()
pacehrh::InitializeStochasticParameters()
pacehrh::InitializeSeasonality()

scenario <- "ScenarioName"

results <-
  pacehrh::RunExperiments(
    scenarioName = scenario,
    trials = 100
  )
}