print.filterSummary {flowCore}R Documentation

Summarize the results after applying a filter

Description

Summarize the results after applying a filter on the flowFrame object.

Usage

summary(object, ...)

Arguments

object Object or list of object of class filterResult, logicalFilterResult or filter.
... optional arguments for the summary function.

Value

a print function for a filterSummary which provides counts and percentages for a filtering operation.

Author(s)

B. Ellis

See Also

filterResult

Examples

data(GvHD)
dead.gate <- norm2Filter("FSC-H","SSC-H",scale.factor=2, filterId="Dead Cells")
Xcell.gate <- norm2Filter("FSC-H","SSC-H",scale.factor=.6, filterId="Selected X Cell")
filter.result <- filter(GvHD[1:4], (Xcell.gate %&% !dead.gate))
invisible(sapply(filter.result,function(x) print(summary(x))))

[Package flowCore version 1.0.2 Index]