| graphcal_oral | R Documentation |
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).
graphcal_oral(dat, dose = 1, ...)
dat |
A data frame containing TIME (time after dosing) and DV (observed concentration). |
dose |
Administered dose amount. Defaults to 1. |
... |
Additional arguments passed to |
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.
A list containing graphical estimates of ka, kel, lambda_z, C0exp, Vd/F, and Cl/F.
Zhonghui Huang
find_best_lambdaz
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.