Learn R Programming

RobustRankAggreg (version 1.2.1)

betaScores: Calculate beta scores

Description

Calculate the beta scores for normalized rank vector.

Usage

betaScores(r)

Value

The functions returns a vector of p-values, that correspond to the sorted input vector. The NA-s are pushed to the end.

Arguments

r

vector of values in [0, 1]

Author

Raivo Kolde <rkolde@gmail.com>

Details

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.

References

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

Examples

Run this code
 betaScores(c(runif(15)))
 betaScores(c(runif(10), rbeta(5, 1, 50)))

Run the code above in your browser using DataLab