An S4 class representing the random draws from a Model object.
Source:R/draws-class.R
Draws-class.Rd
An object of class Draws represents the randomly drawn simulated data that is
generated when simulate_from_model
is called on an object of
class Model. In particular, it contains a named list of nsim
simulated draws from a model object. The Model object's simulate
function populates this list.
Details
This class inherits from the Component
class.
Slots
name
a short name identifier. Must be alphanumeric. Should use the name of the Model object that generated it.
label
a longer, human readable label that indicates what has been randomly drawn.
draws
a list with
nsim
elements as created by calling thesimulate
function of a Model object. This is a named list with each element labeled asri.j
wherei
is theindex
andj
ranges from1
tonsim
. The names are assigned bysimulate_from_model
.index
an integer-valued numeric that indicates which block of random draws this is