Description Usage Arguments Value Examples
Rank the Features in a SummarizedExperiment
Object
1 2 3 4 5 6 7 8 9 | ## S4 method for signature 'SummarizedExperiment'
rankFeatures(
object,
FUN = "rowMads",
RANK_FUN = "dense_rank",
...,
descending = TRUE,
assay = 1
)
|
object |
A |
FUN |
A row-wise summary function, such as |
RANK_FUN |
A ranking function, such as |
... |
Fall through arguments to |
descending |
Should your rank function be called with |
assay |
|
The SummarizedExperiment
with the column feature_score
and
feature_rank
in the rowData
slot. Information about which functions
where used for each column can be found in the object mcols
in the
calculated_with
column.
1 2 | data(sampleICGCmicro)
rankFeatures(sampleICGCmicro, FUN='rowMads', RANK_FUN='dense_rank')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.