An S4 class representing the output of a method run by simulator.
Source:R/output-class.R
Output-class.Rd
An object of class Output
consists of information to identify the
model, draws, and method objects this output was derived from. It also has
a list called out
, which is where the output of the method is stored.
Slots
model_name
the name of the
Model
object this output is derived from.index
the index of the
Draws
object this output is derived from.method_name
the name of the
Method
object this output is derived from.method_label
the label of the
Method
object this output is derived from.out
a named list with each element labeled as
ri.j
wherei
is theindex
andj
ranges from1
tonsim
. Elementout$ri.j
is output of methodmethod_name
on random drawri.j
.