combine {beadarray} | R Documentation |
Combine two seperate objects into a single object.
## 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
if(require(beadarrayExampleData)){ data(exampleBLData) sectionNames(exampleBLData) data2 <- combine(exampleBLData, exampleBLData) sectionNames(data2) }