View source: R/computeSynergy.R
computeZIP | R Documentation |
Predict the additive response of a treatment combination under the ZIP null assumption.
computeZIP(
treatment1dose,
HS_1,
EC50_1,
E_inf_1,
treatment2dose,
HS_2,
EC50_2,
E_inf_2
)
treatment1dose |
|
HS_1 |
|
EC50_1 |
|
E_inf_1 |
|
treatment2dose |
|
HS_2 |
|
EC50_2 |
|
E_inf_2 |
|
numeric
expected viability under ZIP null assumption.
(zip <- computeZIP(
treatment1dose = c(0.1, 0.01, 0.001),
treatment2dose = c(1, 0.1, 0.01),
HS_1 = rep(1, 3), HS_2 = rep(1.2, 3),
EC50_1 = rep(0.01, 3), EC50_2 = rep(0.1, 3),
E_inf_1 = rep(0, 3), E_inf_2 = rep(0.1, 3)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.