base_GIA {loewesadditivity} | R Documentation |
Estimate GIA according to the base model
Description
Estimate GIA according to the base model
Usage
base_GIA(model_params, dose_A, dose_B, fn_list = NULL)
Arguments
model_params |
named vector of parameters to be used in function. Specifically, the named parameters must be "beta_A", "beta_B", "gamma_A", "gamma_B", "tau_1", and "tau_2". See details for more info. |
dose_A |
numeric vector of doses (e.g. mg/mL) of dose_A |
dose_B |
numeric vector of doses (e.g. mg/mL) of dose_B |
fn_list |
NULL |
Value
estimated GIA for each combination of dose A and dose B
Details
The equation is given in full as follows. The GIA (%) is given a as a function of the model parameters and the doses and
, respectively. The doses scaled by the respective ED50s
and
are denoted by
and
, respectively. The parameters
and
are shape parameters. The parameters
and
are interaction parameters. Finally,
is a weighted combination of dose A and dose B.
Examples
model_params <- c("beta_A" = 1, "beta_B" = 2, "gamma_A" = .5,
"gamma_B" = .6, "tau_1" = 1, "tau_2" = 0)
dose_A <- c(0, 1, 0)
dose_B <- c(0, 0, 1)
base_GIA(model_params, dose_A, dose_B)