computeIC50 | R Documentation |
Returns the ICn for any given nth percentile when given concentration and viability as input, normalized by the concentration range of the experiment. A Hill Slope is first fit to the data, and the ICn is inferred from the fitted curve. Alternatively, the parameters of a Hill Slope returned by logLogisticRegression can be passed in if they already known.
computeIC50(
concentration,
viability,
Hill_fit,
conc_as_log = FALSE,
viability_as_pct = TRUE,
verbose = TRUE,
trunc = TRUE
)
computeICn(
concentration,
viability,
Hill_fit,
n,
conc_as_log = FALSE,
viability_as_pct = TRUE,
verbose = TRUE,
trunc = TRUE
)
concentration |
|
viability |
|
Hill_fit |
|
conc_as_log |
|
viability_as_pct |
|
verbose |
|
trunc |
|
n |
|
numeric(1)
The ICn of the Hill curve over the specified dose
range.
a numeric value for the concentration of the nth precentile viability reduction
computeIC50()
: Returns the IC50 of a Drug Dose response curve
dose <- c(0.0025,0.008,0.025,0.08,0.25,0.8,2.53,8)
viability <- c(108.67,111,102.16,100.27,90,87,74,57)
computeIC50(dose, viability)
computeICn(dose, viability, n=10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.