View source: R/calculate_synergy_score.R
CorrectBaseLine | R Documentation |
CorrectBaseLine
adjusts the base line of drug combination
dose-response matrix to make it closer to 0.
CorrectBaseLine(response, method = c("non", "part", "all"))
response |
A drug combination dose-response matrix. It's column name and row name are representing the concentrations of drug added to column and row, respectively. The values in matrix indicate the inhibition rate to cell growth. |
method |
A character value. It indicates the method used for baseline correction. Available values are:
|
A matrix which base line have been adjusted.
Shuyu Zheng shuyu.zheng@helsinki.fi
Jing Tang jing.tang@helsinki.fi
data("mathews_screening_data") data <- ReshapeData(mathews_screening_data) response <- data$response[data$response$block_id == 1, ] adjusted <- CorrectBaseLine(response, method = "part")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.