correspond_between_rankings.Rd
Correspond between a list of rankings
A list of scores under different metrics.
Top n elements to show the correspondance.
A vector of colors for lt
.
Pass to correspond_between_two_rankings
.
It makes plots for every pairwise comparison in lt
.
No value is returned.
require(matrixStats)
#> Loading required package: matrixStats
#>
#> Attaching package: ‘matrixStats’
#> The following objects are masked from ‘package:Biobase’:
#>
#> anyMissing, rowMedians
mat = matrix(runif(1000), ncol = 10)
x1 = rowSds(mat)
x2 = rowMads(mat)
x3 = rowSds(mat)/rowMeans(mat)
correspond_between_rankings(lt = list(SD = x1, MAD = x2, CV = x3),
top_n = 20, col = c("red", "blue", "green"))