set_upper_bounds {pharmr} | R Documentation |
Set parameter upper bounds
set_upper_bounds(model, bounds)
model |
(Model) Pharmpy model |
bounds |
(list(str=numeric)) A list of parameter bounds for parameters to change |
(Model) Pharmpy model object
set_lower_bounds : Set parameter lower bounds
unconstrain_parameters : Remove all constraints of parameters
## Not run:
model <- load_example_model("pheno")
model <- set_upper_bounds(model, list('POP_CL'=10))
model$parameters['POP_CL']
## End(Not run)