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
.
Arguments
- name
a short name identifier. Must be alphanumeric.
- dir
directory that contains "files" directory for this simulation
Examples
sim <- new_simulation(name = "normal-example",
label = "Normal Mean Estimation",
dir = tempdir())
rm(sim)
sim <- load_simulation("normal-example", dir = tempdir())