| cytoFrame-class {prada} | R Documentation |
This class represents the data contained in a FCS 3.0 file or similar data structures.
FCS 3.0 is the Data File Standard for Flow Cytometry, Version FCS3.0.
Objects can be created using
new('cytoFrame,
exprs = ...., # Object of class matrix
description = .... # Object of class character
)
or the function readFCS.
exprs:matrix containing
the measured intensities. Rows correspond to cells, columns to the
different channels. The colnames attribute of the matrix is
supposed to hold the names or identifiers for the channels. The
rownames attribute would usually not be set.description:cytoFrame.
The subsetting is applied to the exprs slot, while the
description slot is unchanged.cytoFrame objects.Wolfgang Huber
intens <- matrix(runif(100), ncol=4)
colnames(intens) <- c("FL1-H", "FL2-H", "FL3-H", "FL4-H")
a <- new("cytoFrame",
exprs=intens,
description=c(name="example data", date=date()))
description(a)
dim(exprs(a))
a[1:3, -4]
plot(a)