Learn R Programming

nlmixr2autoinit (version 1.0.0)

graphcal_oral: Graphical calculation of pharmacokinetic parameters for oral administration

Description

Estimates key pharmacokinetic parameters from oral concentration–time data using graphical methods, including absorption rate constant (ka), elimination rate constant (kel), terminal slope, extrapolated concentration (C0exp), apparent volume of distribution (Vd/F), and clearance (Cl/F).

Usage

graphcal_oral(dat, dose = 1, ...)

Value

A list containing graphical estimates of ka, kel, lambda_z, C0exp, Vd/F, and Cl/F.

Arguments

dat

A data frame containing TIME (time after dosing) and DV (observed concentration).

dose

Administered dose amount. Defaults to 1.

...

Additional arguments passed to find_best_lambdaz().

Author

Zhonghui Huang

Details

The terminal slope (lambdaz) is estimated using force_find_lambdaz(). The apparent volume of distribution and clearance are computed using the following relationships: $$Vd/F = \frac{Dose \times ka}{C_0 \times (ka - kel)}$$ $$Cl/F = kel \times Vd/F$$ where ka is estimated from the absorption phase.

See Also

find_best_lambdaz

Examples

Run this code
dat <- data.frame(TIME = c(0.5, 1, 2, 4, 6, 8, 10),
                  DV = c(1, 2, 5, 3, 2, 1.5, 1))
graphcal_oral(dat, dose = 100, route = "oral")

Run the code above in your browser using DataLab