This function records any object during a simulation to allow its
inspection afterward. The records are stored in dat[["raw.records"]]
during the simulation, where dat is the main netsim_dat class
object, and in the netsim object under the raw.records
collections::queue object.
Arguments
- dat
Main
netsim_datobject containing anetworkDynamicobject and other initialization information passed fromnetsim.- at
The time where the recording happens.
- label
The name to give to the recorded object.
- object
The object to be recorded.
Examples
if (FALSE) { # \dontrun{
dat <- record_raw_object(dat, at, "a.df", data.frame(x = 2:200))
dat <- record_raw_object(dat, at, "a.message", "I recorded something")
} # }