nlmeODE: Non-linear mixed-effects modelling in nlme using differential...

Description Usage Arguments Value Note Author(s) References See Also

Description

This package combines the deSolve and nlme packages for mixed-effects modelling.

Usage

1
nlmeODE(model,data,LogParms,JAC,SEQ,rtol,atol,tcrit,hmin,hmax)

Arguments

model

A list including the following elements: DiffEq (A list of formulas containing the ODE's for the system in the same order as the compartment numbers, i.e. formula i is the ODE for compartment i), ObsEq (A formula specifying which state is observed along with possible scaling parameters), Parms (A vector with the names of the parameters used in DiffEq followed by the parameters in ObsEq and the initial state parameters), States (A vector with the names of the states in DiffEq), Init (A logical vector with the same length as States specifying whether initial state estimates should be obtained for the particular state when TRUE)

data

groupedData object with a formula specifying which columns are the dependent and independent variables, and grouping factor. Optional columns in the groupedData object are the dose Dose, dosing compartment Cmt, rate of infusion Rate, covariate measurements, etc.

LogParms

If TRUE, the parameters are reparameterized in terms of the logarithm of the parameters. Default is TRUE.

JAC

If TRUE, the Jacobian of the system of ODE's is computed and passed to the ODE solver. In some circumstances, supplying the Jacobian can speed up the computations if the system is stiff. Default is FALSE.

SEQ

A logical value, that when TRUE, adds a gradient attribute to the returned value calculated by simultaneous solution of the sensitivity equations associated with the system of ODE's. Default is FALSE.

rtol

Relative error tolerance for lsoda. Default is 1E-4.

atol

Absolute error tolerance for lsoda. Default is 1E-4.

tcrit

Time beyond which the integration should not proceed. Default is NULL.

hmin

Minimum value of the integration stepsize. Default is 0.

hmax

Maximum value of the integration stepsize. Default is Inf.

Value

A function compatible with nlme estimation for systems of ordinary differential equations (ODE's).

Note

For examples of commonly used PK/PD models see PKPDmodels.

Author(s)

Christoffer W. Tornoe <ctornoe@gmail.com>

References

Tornoe, C. W. et al. (2004a) "Non-linear mixed-effects pharmacokinetic/pharmacodynamic modelling in NLME using differential equations", Computer Methods and Programs in Biomedicine, 76(1), 31-40 and Tornoe, C. W. et al. (2004b) "Pharmacokinetic/Pharmacodynamic Modelling of GnRH Antagonist Degarelix: A Comparison of the Non-linear Mixed-Effects Programs NONMEM and NLME",Journal of Pharmacokinetics and Pharmacodynamics, 31(6), 441-461.

See Also

nlme, lsoda


nlmeODE documentation built on May 1, 2019, 8:32 p.m.

Related to nlmeODE in nlmeODE...