PK parameter model
Consider the following extension of the population model from introduction. Each of 59 neonates was given some loading dose of the drug, had a plasma drug level measured about 2 hours later, was given maintenance doses about every 12 hours thereafter, had possibly one trough level measured during maintenance dosing, and certainly one level measured some time after the last maintenance dose. Due to the long half-life of the drug, for the purposes of analysis all doses can be regarded as intravenous bolus doses. The weight and APGAR score of each individual are available as concomitant information. The APGAR score (1-10) is a measure of a neonate’s health at birth.
The one compartment linear model is implemented using ADVAN1. TRANS2, thus Cl and Vd are used for PK parameters and are described using an exponential model, with typical values proportional to weight. For Vd, the proportionality constant takes two possibly values depending on the APGAR score with threshold APGAR=2.
|
|
Note that the reserved variable assignment CALLFL=1 denotes that
the PK routine is called only once for each individual record, at the
first event record of the individual. This is sufficient as the weight
is constant for each individual, and more efficient than the default
setting that evaluates $PK for every data record. This is an
example of calling protocol. A more verbose alternative is to
specify
|
|
A mixture model
Consider the same data set above, and assume the weight is not measured. Without weight the model fitting will be unsatisfactory as Cl and Vd are poorly described. To remedy the problem we can postulate that the 59 neonates constitute a random sample from a population comprised of two subpopulations, one with one set of typical values of Cl and Vd, and a second with another set of typical values. This can be described by a mixture model that assumes that some fraction p of the population has one set of typical values, and the remaining fraction 1-p has another set, specifically, $$ \text{CL}=\theta_1e^{\eta_1}, \quad \text{Vd}=\theta_3e^{\eta_2} $$ for subpopulation 1, and $$ \text{CL}=\theta_2\theta_1e^{\eta_3}, \quad \text{Vd}=\theta_4\theta_3e^{\eta_4} $$ for subpopulation 2. \(\theta_2\) and \(\theta_4\) are the fractional adjustments in the typical values for subpopulation 2. With a mixture model, different ETA variables on the same PK parameter must be used with different subpopulations.
NONMEM provides control record $MIX for mixture models.
|
|
NSPOP=2 in the $MIX record specifies that there are two
subpopulations, and the vector P contains the fractions of the
subpopulations. Reserved variables MIXNUM contains the subpopulation
index and is used to select CL and V. By fitting the above model we
estimate both sets of typical values and the mixing fraction p.
Alternatively, one can supply a MIX routine instead of $MIX
record. With the Fortran implementation
|
|
one can replace the $SUBROUTINE and $MIX records in the above model as
|
|