mrgsims_modify {mrgsolve} | R Documentation |
Methods for modifying mrgsims objects
Description
These functions modify the simulated data in an mrgsims object and return the modified object. Contrast with the functions in mrgsims_dplyr.
Usage
mutate_sims(.data, ...)
select_sims(.data, ...)
filter_sims(.data, ...)
Arguments
.data |
a mrgsims object |
... |
other arguments passed to the |
See Also
Examples
out <- mrgsim(house(), events = ev(amt = 100))
filter_sims(out, time > 2)
mutate_sims(out, label = "abc")
select_sims(out, RESP, CP)
[Package mrgsolve version 1.5.1 Index]