Description Usage Arguments Details Value Author(s) Examples
Remove rows that contain censored data in the
colums of x
specified by columns
.
1 2 3 4 5 6 | ## S4 method for signature 'matrix'
removeCensored(x, values, columns, na.rm=TRUE)
## S4 method for signature 'data.frame'
removeCensored(x, values, columns, na.rm=TRUE)
## S4 method for signature 'cytoFrame'
removeCensored(x, values, columns, na.rm=TRUE)
|
x |
Object of class matrix, data.frame, or cytoFrame. |
values |
Values that correspond to censored data. If missing,
|
columns |
Numeric or character vector specifying the columns
of |
na.rm |
Logical. If |
The function removes all rows that contain, in the columns
specified by the columns
argument, values that are contained in
the values
argument. If na.rm
is TRUE
, then
rows that contain NA
values are also removed.
An application is with FACS data, where measurements outside of the detector's dynamic range produce minimal or maximal values. For example, if a 16-bit A/D converter was used, top-censored data would have a value of 65535.
Object of the same class as x
, with some rows removed.
Florian Hahne, Wolfgang Huber
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.