correspond_between_rankings {cola} | R Documentation |
Correspond between a list of rankings
correspond_between_rankings(lt, top_n = length(lt[[1]]), col = cola_opt$color_set_1[1:length(lt)], ...)
lt |
A list of scores under different metrics. |
top_n |
Top n elements to show the correspondance. |
col |
A vector of colors for |
... |
Pass to |
It makes plots for every pairwise comparison in lt
.
No value is returned.
Zuguang Gu <z.gu@dkfz.de>
require(matrixStats) 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"))