Learn R Programming

beadarray (version 2.22.2)

combine: Combine two objects.

Description

Combine two seperate objects into a single object.

Usage

"combine"(x, y)
"combine"(x,y)

Arguments

x
An object of class beadLevelData or ExpressionSetIllumina.
y
An object of the same class as x.

Value

Returns an object of the same class as the two inputs.

Details

The combine function allows two objects of the same class that have been created seperately to be combined into one.

Examples

Run this code

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


}

Run the code above in your browser using DataLab