Description Usage Arguments Value Author(s) Examples
Extracts the complemented ExpressionSet when opls has been applied to an ExpressionSet
1 2 3 4 |
object |
An S4 object of class |
... |
Currently not used |
An S4 object of class ExpressionSet
which contains the dataMatrix (t(exprs(eset))),
and the sampleMetadata (pData(eset)) and variableMetadata (fData(eset)) with the additional columns
containing the scores, predictions, loadings, VIP, coefficients etc.
Etienne Thevenot, etienne.thevenot@cea.fr
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | data(sacurine)
attach(sacurine)
sacSet <- Biobase::ExpressionSet(assayData = t(dataMatrix),
phenoData = new("AnnotatedDataFrame",
data = sampleMetadata),
featureData = new("AnnotatedDataFrame",
data = variableMetadata),
experimentData = new("MIAME",
title = "sacurine"))
sacPlsda <- opls(sacSet, "gender")
sacSet <- getEset(sacPlsda)
head(Biobase::pData(sacSet))
head(Biobase::fData(sacSet))
detach(sacurine)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.