add_parameter_uncertainty_step {pharmr} | R Documentation |
add_parameter_uncertainty_step
Description
Adds parameter uncertainty step to the final estimation step
Usage
add_parameter_uncertainty_step(model, parameter_uncertainty_method)
Arguments
model |
(Model) Pharmpy model |
parameter_uncertainty_method |
(str) Parameter uncertainty method to use |
Value
(Model) Pharmpy model object
See Also
add_estimation_step
set_estimation_step
remove_estimation_step
append_estimation_step_options
remove_parameter_uncertainty_step
set_evaluation_step
Examples
## Not run:
model <- load_example_model("pheno")
model <- set_estimation_step(model, 'FOCE', parameter_uncertainty_method=NULL)
model <- add_parameter_uncertainty_step(model, 'SANDWICH')
ests <- model$execution_steps
ests[1]
## End(Not run)
[Package pharmr version 1.0.1 Index]