Learn R Programming

mrgsolve (version 1.5.1)

mrgsims_modify: 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 dplyr functions

See Also

mrgsims_dplyr

Examples

Run this code

out <- mrgsim(house(), events = ev(amt = 100))

filter_sims(out, time > 2)

mutate_sims(out, label = "abc")

select_sims(out, RESP, CP)

Run the code above in your browser using DataLab