load_simulation {simulator} | R 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())
[Package simulator version 0.2.5 Index]