Description Arguments Details Value Author(s) Examples
This method initializes the Quantile Filter.
The Quantile Filter flags all rows with: flag = (quantile[high]/quantile[low] >= cutoff)
Usage
quantileFilter(object)
quantileFilter(object, value)<-
object |
object of class |
value |
numeric vector |
The method quantileFilter
initializes the following parameters:
cutoff : | the cutoff level for the filter. | |
loquantile : | value for low quantile (default is loquantile=0.05 ). |
|
hiquantile : | value for high quantile (default is hiquantile=0.95 ).
|
An initialized PreFilter
object.
Christian Stratowa
1 2 3 | prefltr <- PreFilter()
quantileFilter(prefltr) <- c(3.0, 0.05, 0.95)
str(prefltr)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.