load_simulation: Load a simulation object

View source: R/simulation-class.R

load_simulationR Documentation

Load a simulation object

Description

Loads an object of class Simulation. Note that dir gives the directory where the Simulation object is stored. Thus, if the working directory is different from the working directory when the Simulation object was created, then dir will be different from the one passed to new_simulation.

Usage

load_simulation(name, dir = ".")

Arguments

name

a short name identifier. Must be alphanumeric.

dir

directory that contains "files" directory for this simulation

See Also

new_simulation save_simulation

Examples

sim <- new_simulation(name = "normal-example",
                       label = "Normal Mean Estimation",
                       dir = tempdir())
rm(sim)
sim <- load_simulation("normal-example", dir = tempdir())

simulator documentation built on Feb. 16, 2023, 9:34 p.m.