View source: R/feature_processing.R
rankFeatures | R Documentation |
Rank features based on the direction of their fold change and their magnitude implicated through their assigned p-value.
rankFeatures(logFC, pvalues, base = 10)
logFC |
Vector containing the log-transformed fold changes of features. |
pvalues |
Vector containing the p-values associated with those logFCs. |
base |
Integer specifying the base of the logarithm. Default: 10 |
Vector of pre-ranked features, still unsorted
logFC <- rnorm(10)
pvalues <- runif(10)
rankFeatures(logFC, pvalues)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.