Learn R Programming

CALIB (version 1.38.0)

subsetting: Subset of RGList\_CALIB, SpikeList or ParameterList object

Description

Exact a subset of an RGList\_CALIB, SpikeList or ParameterList object.

Usage

"["(object, i, j, ...)

Arguments

object
an object of class RGList_CALIB or SpikeList.
i,j
subscripts. i is the subscripts of the spots and j is the subscripts of the arrays.
...
not used

Value

An object of the same class as object containing the data with specified subset of spots and arrays.

Details

i,j may take any values acceptable for the matrix components of object.

References

subsetting in limma package

See Also

subsetting in the limma package

Examples

Run this code

# for RGList_CALIB
R <- G <- matrix(1:8,4,2)
rownames(R) <- rownames(G) <- c("g1","g2","g3","g4")
colnames(R) <- colnames(G) <- c("a1","a2")
RG <- new("RGList_CALIB",list(R=R,G=G))

RG[1:2,]
RG[,1:2]
RG[1:2,1:2]

Run the code above in your browser using DataLab