Description Usage Arguments Details Value Author(s) Examples
Combine two seperate objects into a single object.
1 2 3 4 5 | ## S4 method for signature 'beadLevelData,beadLevelData'
combine(x, y)
## S4 method for signature 'ExpressionSetIllumina,ExpressionSetIllumina'
combine(x,y)
|
x |
An object of class |
y |
An object of the same class as |
The combine
function allows two objects of the same class that have been created seperately to be combined into one.
Returns an object of the same class as the two inputs.
Mark Dunning, Mike Smith
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | if(require(beadarrayExampleData)){
data(exampleBLData)
sectionNames(exampleBLData)
data2 <- combine(exampleBLData, exampleBLData)
sectionNames(data2)
data(exampleSummaryData)
d1 <- exampleSummaryData[,c(1:4)]
d2 <- exampleSummaryData[,c(5:8)]
d3 <- combine(d1, d2)
d3
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.