View source: R/calculate_sensitivity_score.R
CalculateRI | R Documentation |
Function CalculateRI
calculates cell line sensitivity to a drug or a
combination of drugs from dose response curve.
CalculateRI(df)
df |
A data frame. It contains two variables:
|
This function measures the sensitivity by calculating the Area Under Curve (AUC) according to the dose response curve. The lower border is chosen as lowest non-zero concentration in the dose response data.
A numeric value. It is the RI score for input dose-response curve.
Shuyu Zheng shuyu.zheng@helsinki.fi
Jing Tang jing.tang@helsinki.fi
# LL.4 df <- data.frame(dose = c(0, 0.1954, 0.7812, 3.125, 12.5, 50), response = c(2.95, 3.76, 18.13, 28.69, 46.66, 58.82)) RI <- CalculateRI(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.