Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/exprSetManipulations.R
Merge two ExpressionSet objects, checking their attributes.
1 | combineTwoExpressionSet(x, y)
|
x |
An object of class ExpressionSet |
y |
An object of class ExpressionSet |
exprs and pData are merged. Other data (such as MIAME or annotation) are those of x.
An object of class ExpressionSet
Eric Lecoutre
1 2 3 4 5 6 7 8 9 | ## Not run:
# prepare and combine two ExpressionSet
data(data.H2009); data(phenoData.H2009)
data(data.SKOV3); data(phenoData.SKOV3)
eH2009 <- prepareExpressionSet(exprs = data.H2009, phenoData = phenoData.H2009, changeColumnsNames = TRUE)
eSKOV3 <- prepareExpressionSet(exprs = data.SKOV3, phenoData = phenoData.SKOV3, changeColumnsNames = TRUE)
newE <- combineTwoExpressionSet(eH2009,eSKOV3)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.