calculate_parameters_from_ucp {pharmr}R Documentation

calculate_parameters_from_ucp

Description

Scale parameter values from ucp to normal scale

Usage

calculate_parameters_from_ucp(model, scale, ucps)

Arguments

model

(Model) Pharmpy model

scale

(UCPScale) A parameter scale

ucps

(array or list(str=numeric)) Series of parameter values

Value

(data.frame) Parameters on the normal scale

See Also

calculate_ucp_scale : Calculate the scale for conversion from ucps

Examples

## Not run: 
model <- load_example_model("pheno")
scale <- calculate_ucp_scale(model)
values <- {'POP_CL': 0.1, 'POP_VC': 0.1, 'COVAPGR': 0.1, 'IIV_CL': 0.1, 'IIV_VC': 0.1, 'SIGMA': 0.1}
calculate_parameters_from_ucp(model, scale, values)

## End(Not run)

[Package pharmr version 1.0.1 Index]