Description Usage Arguments Value Examples
This function will fit a 4-parameter log-logistic model using dr4pl package based on the input dose-response table and return the model parameters as well as integrated area under the fitted sigmoid curve.
1 |
formula |
formula for the curve fitting. |
data |
a data frame containing the raw concentration and the viability value. |
minConc |
lower bound of concentrations for the integration of area under curve, default value is 0. |
maxConc |
upper bound of concentrations for the integration of area under curve, default value is 15. |
n |
number of bins for integration. |
... |
further arguments to be passed to dr4pl function. |
a dataframe with only one row and four columns:
UpperLimit |
the upper limit of the fitted logistic model |
IC50 |
the half maximal inhibitory concentration (IC50), or the half maximal effective concentration (EC50), depends on the type of input data |
Slope |
the slope of the fitted logistic model |
lowerLimit |
the upper limit of the fitted logistic model |
AUC |
the area under the fitted sigmoid doese-response curve |
If the model fitting is failed, all values in the dataframe will be NA.
1 2 3 4 5 6 | # create an example dose-response table
doseTab <- data.frame(viability = c(1.0, 0.95, 0.5, 0.2, 0.1),
concentration = c(0.001, 0.01, 0.1, 1, 10))
# get the parameters
sumIC50(viability ~ concentration, data = doseTab)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.