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}} ) \)
Arguments
- viability
numeric
is a vector whose entries are the viability values in the range [0, 1] ifis_pct
isFALSE
or [0, 100] if it isTRUE
.- EC50
numeric
is a vector of relative EC50 for drug-response equation.- HS
numeric
Hill coefficient of the drug-response equation that represents the sigmoidity of the curve.- E_inf
numeric
the maximum attanable effect of a drug when it is administered with a infinitely high concentration.- is_pct
logical
whether both the input viabiliy andE_inf
are given in percentage ([0, 100]) rather than decimal ([0, 1]). Default FALSE.