filterSummaryList-class {flowCore} | R Documentation |
Class and methods to handle summary statistics for from filtering
operations on whole flowSets
.
object |
An object of class
filterResultList which is to
be summarized. |
... |
Further arguments that are passed to the generic. |
Calling summary
on a filterResult
object prints
summary information on the screen, but also creates objects of class
filterSummary
for computational access.
An object of class filterSummaryList
.
Objects are created by calling summary
on a
link{filterResultList}
object. The user doesn't have to deal
with manual object instantiation.
.Data
:"list"
. The class
directly extends list
, and this slot holds the list data.
Class "list"
, from data part.
summary(object, ...)
signature(x = "filterSummaryList")
: Coerce
object to data.frame
. Additional factors are added to
indicate list items in the original object.
Florian Hahne
filterResult
,
filterResultList
,
logicalFilterResult
,
multipleFilterResult
,
flowFrame
filterSummary
## Loading example data, creating and applying a curv1Filter data(GvHD) dat <- GvHD[1:3] c1f <- curv1Filter(filterId="myCurv1Filter", x=list("FSC-H"), bwFac=2) fres <- filter(dat, c1f) ## creating and showing the summary summary(fres) s <- summary(fres) ## subsetting s[[1]] ##accessing details toTable(s)