Learn R Programming

pharmr (version 1.0.1)

fix_or_unfix_parameters: fix_or_unfix_parameters

Description

Fix or unfix parameters

Set fixedness of parameters to specified values

Usage

fix_or_unfix_parameters(model, parameters)

Value

(Model) Pharmpy model object

Arguments

model

(Model) Pharmpy model

parameters

(list(str=logical)) Set fix/unfix for these parameters

See Also

fix_parameters : Fix parameters

unfix_paramaters : Unfixing parameters

fix_paramaters_to : Fixing parameters and setting a new initial estimate in the same

function

unfix_paramaters_to : Unfixing parameters and setting a new initial estimate in the same

function

Examples

Run this code
if (FALSE) {
model <- load_example_model("pheno")
model$parameters['POP_CL']
model <- fix_or_unfix_parameters(model, list('POP_CL'=TRUE))
model$parameters['POP_CL']
}

Run the code above in your browser using DataLab