
Transform an estimated Nonmem model into a simulation control stream
Source:R/NMsim_default.R
NMsim_default.RdThe default behaviour of NMsim. Replaces any $ESTIMATION
and $COVARIANCE sections by a $SIMULATION section.
Usage
NMsim_default(
file.sim,
file.mod,
data.sim,
nsims = 1,
onlysim = TRUE,
replace.sim = TRUE,
return.text = FALSE
)Arguments
- file.sim
See
?NMsim.- file.mod
See
?NMsim.- data.sim
See
?NMsim.- nsims
Number of replications wanted. The default is 1. If greater, multiple control streams will be generated.
- onlysim
Include `ONLYSIM` in `$SIMULATION`? Default is `TRUE`. Only applied when `replace.sim=`TRUE`.
- replace.sim
If there is a $SIMULATION section in the contents of file.sim, should it be replaced? Default is yes. See the
list.sectionargument toNMsimfor how to provide custom contents to sections withNMsiminstead of editing the control streams beforehand.- return.text
If TRUE, just the text will be returned, and resulting control stream is not written to file.