View source: R/calc_invitro_concentration.R
calc_invitro_concentration | R Documentation |
Estimate the in vitro equivalent plasma concentration given internal chemical dose and steady-state plasma concentration.
calc_invitro_concentration(D_int, C_ss = NULL)
D_int |
internal chemical dose in |
C_ss |
steady-state plasma concentration in |
Input D_int
must be a matrix or list of matrices. Input C_ss
must be a
numeric atomic vector or matrix, or a list of those types.
The in vitro equivalent plasma concentration is calculated as:
C_{plasma} = C_{ss} \times D_{int}
list of matrices containing concentrations in \mu M
# Single population
D_int <- matrix(1:15, ncol = 3)
C_ss <- 1:5
calc_invitro_concentration(D_int, C_ss)
# Multiple populations
D_int <- list(
"a" = matrix(1:15 / 10, ncol = 3),
"b" = matrix(1:8, ncol = 2)
)
C_ss <- list(1:5, 1:4 / 2)
calc_invitro_concentration(D_int, C_ss)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.