correspond_between_rankings {cola} | R Documentation |
Correspond between a list of rankings
correspond_between_rankings(lt, top_n = length(lt[[1]]), col = brewer_pal_set1_col[1:length(lt)], ...)
lt |
a list of scores under different metrics. |
top_n |
top n elements to show correspondance. |
col |
a vector of colors for |
... |
pass to |
It makes plots for every pairwise comparisons 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, vc = x3), top_n = 20, col = c("red", "blue", "green"))