Description Usage Arguments Value Examples
For a given model.id
, getExperiment
will
1 2 3 4 5 6 7 8 9 10 11 12 | getExperiment(object, model.id = NULL, batch = NULL,
patient.id = NULL, drug = NULL, control.name = NULL,
treatment.only = FALSE, max.time = NULL, vol.normal = FALSE,
log.volume = FALSE, return.list = FALSE, impute.value = FALSE,
concurrent.time = FALSE)
## S4 method for signature 'XevaSet'
getExperiment(object, model.id = NULL,
batch = NULL, patient.id = NULL, drug = NULL,
control.name = NULL, treatment.only = FALSE, max.time = NULL,
vol.normal = FALSE, log.volume = FALSE, return.list = FALSE,
impute.value = FALSE, concurrent.time = FALSE)
|
object |
The |
model.id |
The |
batch |
Batch name from the |
patient.id |
Patient id from the |
drug |
Name of the drug. |
control.name |
Name of drug used as control. Default |
treatment.only |
Default |
max.time |
Maximum time for data. |
vol.normal |
If TRUE it will normalize the volume. Default |
log.volume |
If TRUE log of the volume will be used. Default |
return.list |
Default |
impute.value |
Default |
concurrent.time |
Default |
a data.fram
will all the the values stored in experiment slot
1 2 3 4 5 6 7 8 9 10 11 12 | data(brca)
getExperiment(brca, model.id="X.6047.uned", treatment.only=TRUE)
getExperiment(brca, model.id=c("X.6047.uned", "X.6047.pael"), treatment.only=TRUE)
getExperiment(brca, batch="X-6047.paclitaxel", treatment.only=TRUE)
ed <- list(batch.name="myBatch", treatment=c("X.6047.LJ16","X.6047.LJ16.trab"),
control=c("X.6047.uned"))
getExperiment(brca, batch=ed)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.