CorrectBaseLine {synergyfinder} | R Documentation |
CorrectBaseLine
adjusts the base line of drug combination
dose-response matrix to make it closer to 0.
CorrectBaseLine(response.mat, method = c("non", "part", "all"))
response.mat |
A drug cobination dose-response matrix. It's column name and row name are representing the concerntrations of drug added to column and row, respectively. The values in matrix indicate the inhibition rate to cell growth. |
method |
A character value to indicate using which method to do baseline correction. Available values ate:
|
A matrix which base line have been adjusted.
Liye He liye.he@helsinki.fi
Shuyu Zheng shuyu.zheng@helsinki.fi
data("mathews_screening_data") data <- ReshapeData(mathews_screening_data) response.mat <- data$dose.response.mats[[1]] adjusted.mat <- CorrectBaseLine(response.mat, method = "part")