Get the names of the simulation scenarios of a FACTS file. without actually running any simulations. These names usually come from the virtual subject response (VSR) scenarios, the accrual profiles, and the dropout profiles.
get_facts_scenarios(facts_file, verbose = FALSE)
Character, name of a FACTS file.
Usually has a *.facts
file extension.
Logical, whether to print progress to the R console.
Character vector of FACTS simulation scenarios.
# Can only run if system dependencies are configured:
if (file.exists(Sys.getenv("RFACTS_PATHS"))) {
facts_file <- get_facts_file_example("contin.facts")
get_facts_scenarios(facts_file)
}