Description Usage Arguments Value Examples
View source: R/remove_features.R
Remove features with no variability (method = "constant"), missing values (method = "missing"), low intensity (method = "zero") or identical peaks (method = "identical.peaks").
1 | remove_features(se, assay, method, freq = 0.25, verbose = FALSE)
|
se |
|
assay |
Character or integer. Name or number of assay to be used for filtering. |
method |
Method to determine features to be removed: "constant", "missing", "zero", "identical.peaks". |
freq |
Numeric. If more or equal than freq*100 criterion the feature is removed (not used if method = "constant"). |
verbose |
Logical. Should number of removed features be reported? |
RangedSummarizedExperiment-class
object with features removed
1 2 3 4 | data("se.example")
se.example = remove_features(se = se.example,
assay = "mz",
method = "identical.peaks")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.