View source: R/computeSynergy.R
effectToDose | R Documentation |
For the dose-response Hill equation of a drug defined by
E(x) = E_{inf}+\frac{1-E_{inf}}{1+(\frac{x}{EC50})^(\frac{1}{HS})}
,
that computes the response in viability from a dose in micromole for a drug,
this function is the inverse function of the Hill curve that
computes the dose required to produce a given response:
f^{-1}(E) = EC50 (
\frac{1-E}{E-E_{inf}} )^{\frac{1}{HS}}
)
effectToDose(viability, EC50, HS, E_inf, is_pct = FALSE)
viability |
|
EC50 |
|
HS |
|
E_inf |
|
is_pct |
|
numeric
concentrations in micromoles required to produce
viability
in the corresponding entries.
dose <- effectToDose(viability = 80,
EC50 = 42,
HS = 1,
E_inf = 10,
is_pct = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.