Correspond between a list of rankings

correspond_between_rankings(lt, top_n = length(lt[[1]]),
    col = cola_opt$color_set_1[1:length(lt)], ...)

Arguments

lt

A list of scores under different metrics.

top_n

Top n elements to show the correspondance.

col

A vector of colors for lt.

...

Pass to correspond_between_two_rankings.

Details

It makes plots for every pairwise comparison in lt.

Value

No value is returned.

Author

Zuguang Gu <z.gu@dkfz.de>

Examples

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"))