unconstrain_parameters {pharmr}R Documentation

unconstrain_parameters

Description

Remove all constraints from parameters

Usage

unconstrain_parameters(model, parameter_names)

Arguments

model

(Model) Pharmpy model

parameter_names

(array(str)) Remove all constraints for the listed parameters

Value

(Model) Pharmpy model object

See Also

set_lower_bounds : Set parameter lower bounds

set_upper_bounds : Set parameter upper bounds

unfix_parameters : Unfix parameters

Examples

## Not run: 
model <- load_example_model("pheno")
model$parameters['POP_CL']
model <- unconstrain_parameters(model, c('POP_CL'))
model$parameters['POP_CL']

## End(Not run)

[Package pharmr version 1.0.1 Index]