Description Usage Arguments Value Usage Author(s) References See Also
This method splits data according to results of the clustering (filtering) operation. Outliers identified will be removed by default.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | split(x, f, drop = FALSE, ...)
## S4 method for signature 'data.frame,flowClust'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'matrix,flowClust'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'vector,flowClust'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'flowFrame,flowClust'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'flowFrame,tmixFilterResult'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'flowFrame,flowClustList'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'data.frame,flowClustList'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'matrix,flowClustList'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'vector,flowClustList'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
## S4 method for signature 'flowFrame,tmixFilterResultList'
split(x, f, drop = FALSE,
population = NULL, split = NULL, rm.outliers = TRUE, ...)
|
x |
A numeric vector, matrix, data frame of observations, or object of
class |
f |
Object returned from |
drop |
A logical value indicating whether to coerce a column matrix
into a vector, if applicable. Default is |
... |
Further arguments to be passed to or from other methods. |
population |
An optional argument which specifies how to split the
data. If specified, it takes a list object with named or unnamed elements
each of which is a numeric vector specifying which clusters are included.
If this argument is left unspecified, the data object will be split into
|
split |
This argument is deprecated. Should use |
rm.outliers |
A logical value indicating whether outliers are removed or not. |
A list object with elements each of which is a subset of x
and also retains the same class as x
. If the split
argument
is specified with a list of named elements, those names will be used to name
the corresponding elements in the resultant list object.
split(x, f, drop=FALSE, population=NULL, split=NULL, rm.outliers=TRUE, ...)
Raphael Gottardo <raph@stat.ubc.ca>, Kenneth Lo <c.lo@stat.ubc.ca>
Lo, K., Brinkman, R. R. and Gottardo, R. (2008) Automated Gating of Flow Cytometry Data via Robust Model-based Clustering. Cytometry A 73, 321-332.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.