Description Arguments Details Value Slots Usage Objects from the Class Extends Methods Author(s) See Also Examples
Class and methods to handle summary statistics for from filtering operations
on whole flowSets
.
object |
An object of class.
|
... |
Further arguments that are passed to the generic. |
Calling summary
on a filterResultList
object prints summary
information on the screen, but also creates objects of class
filterSummaryList
for computational access.
An object of class filterSummaryList
.
.Data
Object of class "list"
. The class
directly extends list
, and this slot holds the list data.
summary(object, ...)
Objects are created by calling summary
on a
link{filterResultList}
object. The user doesn't have to deal with
manual object instantiation.
Class "list"
, from .Data
part.
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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | library(flowStats)
## 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.