Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'DGEList':
dim(x)
## S3 method for class 'DGEList':
length(x)
DGEList
, DGEExact
, TopTags
, DGEGLM
or DGELRT
A consequence is that row and column commands nrow(x)
, ncol(x)
and so on also work.
dim
in the base package.
02.Classes gives an overview of data classes used in LIMMA.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)
Run the code above in your browser using DataLab