dim {maigesPack} | R Documentation |
Generic function dim
to retrieve the number of
rows (genes) and columns (arrays) for classes maigesPreRaw
,
maigesRaw
, maiges
and maigesANOVA
.
## S3 method for class 'maigesPreRaw': dim(x) ## S3 method for class 'maigesRaw': dim(x) ## S3 method for class 'maiges': dim(x) ## S3 method for class 'maigesANOVA': dim(x)
x |
an object of class maigesPreRaw ,
maigesRaw , maiges or maigesANOVA |
This is a function to retrieve the dimensions of the dataset - number of
genes (rows) and samples (columns) studied. Note that the commands
nrow(x)
, ncol(x)
and
commands related with matrix dimensions on also work.
Vector with 2 numbers, the first one is the number of rows (genes) and the second one the number of columns (samples).
modified from the marray
package
dim
in the base package.
## Loading the dataset data(gastro) dim(gastro) dim(gastro.raw) dim(gastro.norm) dim(gastro.summ)