Description Usage Arguments Value Author(s) Examples
ExtractSingleDrug
extracts the dose-response values of single drug
from a drug combination dose-response matrix.
1 | ExtractSingleDrug(response)
|
response |
A data frame. It must contain the columns: "conc1", "conc2", ..., for the concentration of the combined drugs and "response" for the observed %inhibition at certain combination. |
A list contains several data frames each of which contains 2 columns:
dose The concertration of drug.
response The cell's response (inhibation rate) to corresponding drug concertration.
Shuyu Zheng shuyu.zheng@helsinki.fi
Jing Tang jing.tang@helsinki.fi
1 2 3 4 5 | data("mathews_screening_data")
data <- ReshapeData(mathews_screening_data)
response <- data$response[data$response$block_id == 1,
c("conc1", "conc2", "response")]
single <- ExtractSingleDrug(response)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.