Learn R Programming

mrgsolve (version 1.5.1)

simargs: Access or clear arguments for calls to mrgsim

Description

As a model object navigates a pipeline prior to simulation, arguments are collected to eventually be passed to mrgsim(). simargs lets you intercept and possibly clear those arguments.

Usage

simargs(x, which = NULL, clear = FALSE, ...)

Value

If clear is TRUE, the argument list is cleared and the model object is returned. Otherwise, the argument list is returned.

Arguments

x

model object

which

character with length 1 naming a single arg to get

clear

logical indicating whether or not to clear args from the model object

...

passed along

Examples

Run this code
mod <- mrgsolve::house()
mod %>% Req(CP, RESP) %>% carry_out(evid, WT, FLAG) %>% simargs()

Run the code above in your browser using DataLab