View source: R/functions_wrapper.R
append_estimation_step_options | R Documentation |
Append estimation step options
Appends options to an existing estimation step.
append_estimation_step_options(model, tool_options, idx)
model |
(Model) Pharmpy model |
tool_options |
(list(str=any)) any additional tool specific options |
idx |
(numeric) index of estimation step (starting from 0) |
(Model) Pharmpy model object
add_estimation_step
set_estimation_step
remove_estimation_step
add_parameter_uncertainty_step
remove_parameter_uncertainty_step
set_evaluation_step
## Not run:
model <- load_example_model("pheno")
opts <- list('NITER'=1000, 'ISAMPLE'=100)
model <- append_estimation_step_options(model, tool_options=opts, idx=0)
est <- model$execution_steps[1]
length(est$tool_options)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.