print.filterSummary {flowCore} | R Documentation |
Summarize the results after applying a filter on the flowFrame
object.
summary(object, ...)
object |
Object or list of object of class filterResult ,
logicalFilterResult or filter . |
... |
optional arguments for the summary function. |
a print function for a filterSummary
which provides counts and percentages for a
filtering operation.
B. Ellis
filterResult
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))))