dim: Retrieve the Dimensions of an RGList, MAList or SegList...

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Retrieve the number of rows (genes) and columns (arrays) for an RGList, MAList or SegList object.

Usage

1
2
3
4
## S3 method for class 'SegList'
dim(x)
## S3 method for class 'SegList'
length(x)

Arguments

x

an object of class RGList, MAList or SegList

Details

Microarray data objects share many analogies with ordinary matrices in which the rows correspond to spots or genes and the columns to arrays. These methods allow one to extract the size of microarray data objects in the same way that one would do for ordinary matrices.

A consequence is that row and column commands nrow(x), ncol(x) and so on also work.

Value

Numeric vector of length 2. The first element is the number of rows (genes) and the second is the number of columns (arrays).

Author(s)

Gordon Smyth, modified by Mike Smith for SegList object

See Also

dim in the base package.

Examples

1
2
3
4
5
6
7
8
M <- A <- matrix(11:14,4,2)
rownames(M) <- rownames(A) <- c("a","b","c","d")
colnames(M) <- colnames(A) <- c("A1","A2")
MA <- new("MAList",list(M=M,A=A))
dim(M)
ncol(M)
nrow(M)
length(M)

snapCGH documentation built on Nov. 8, 2020, 5:31 p.m.