View source: R/aggregateRanks.R
betaScores | R Documentation |
Calculate the beta scores for normalized rank vector.
betaScores(r)
r |
vector of values in [0, 1] |
Takes in a vector with values in [0, 1]. It sorts the values to get the order statistics and calculates p-values for each of the order statistics. These are based on their expected distribution under the null hypothesis of uniform distribution.
In RRA algorithm context the inputs are supposed to be normalized ranks. However, p-values in general follow the uniform distribution, therefore it can be used with any kind of p-value vectors, to see if there are more small values than expected.
The NA values are removed before calculation and all results take into account only existing values.
The functions returns a vector of p-values, that correspond to the sorted input vector. The NA-s are pushed to the end.
Raivo Kolde <rkolde@gmail.com>
Raivo Kolde, Sven Laur, Priit Adler, Jaak Vilo, Robust rank aggregation for gene list integration and meta-analysis, Bioinformatics, 2012,, https://doi.org/10.1093/bioinformatics/btr709
betaScores(c(runif(15))) betaScores(c(runif(10), rbeta(5, 1, 50)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.