Description Slots Objects from the Class Extends Methods Author(s) See Also Examples
Container to store the result of applying a filter on a
flowSet object
.DataObject of class "list". The class
directly extends list, and this slot holds the list data.
frameIdObject of class "character" The IDs of
the flowFrames in the filtered
flowSet.
filterDetailsObject of class "list". Since
filterResultList inherits from filterResult,
this slot has to be set. It contains only the input filter.
filterIdObject of class "character". The
identifier for the object.
Objects are created by applying a filter on a
flowSet. The user doesn't have to deal with manual object
instantiation.
Class "list", from data part.
Class "filterResult", directly.
Class "concreteFilter", by class "filterResult", distance 2.
Class "filter", by class "filterResult", distance 3.
signature(x = "filterResultList", i = "ANY"): Subset
to filterResultList.
signature(x = "filterResultList", i = "ANY"): Subset
to individual filterResult.
signature(x = "filterResultList"): Accessor to
the frameId slot.
signature(object = "filterResultList"):
Return parameters on which data has been filtered.
signature(object = "filterResultList"): Print
details about the object.
signature(x = "flowSet", f =
"filterResultList"): Split a flowSet based on the
results in the filterResultlIst. See split
for details.
signature(object = "filterResultList"):
Summarize the filtering operation. This creates a
filterSummaryList
object.
Florian Hahne
filter, filterResult,
logicalFilterResult,
multipleFilterResult,
randomFilterResult
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | library(flowStats)
## Loading example data and creating a curv1Filter
data(GvHD)
dat <- GvHD[1:3]
c1f <- curv1Filter(filterId="myCurv1Filter", x=list("FSC-H"), bwFac=2)
## applying the filter
fres <- filter(dat, c1f)
fres
## subsetting the list
fres[[1]]
fres[1:2]
## details about the object
parameters(fres)
names(fres)
summary(fres)
## splitting based on the filterResults
split(dat, fres)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.