transform_etas_john_draper#

pharmpy.modeling.transform_etas_john_draper(model, list_of_etas=None)[source]#

Applies a John Draper transformation [1] to spelected etas

Initial estimate for lambda is 0.1 with bounds (-3, 3).

Parameters:
  • model (Model) – Pharmpy model to apply John Draper transformation to.

  • list_of_etas (str, list) – Name/names of etas to transform. If None, all etas will be transformed (default).

Returns:

Model – Pharmpy model object

Examples

>>> from pharmpy.modeling import *
>>> model = load_example_model("pheno")
>>> model = transform_etas_john_draper(model, ["ETA_1"])
>>> model.statements.before_odes.full_expression("CL")
PTVCL*WGT*exp(((Abs(ETA_1) + 1)**lambda1 - 1)*sign(ETA_1)/lambda1)