top_elements_overlap {cola} | R Documentation |
Overlap of top elements from different metrics
top_elements_overlap(object, top_n = round(0.25*length(object[[1]])), method = c("venneuler", "venn", "correspondance"), ...)
object |
a list which contains values from different metrics. |
top_n |
number of top rows. |
method |
|
... |
additional arguments passed to |
The i^th value in all vectors in the input should correspond to a same element from the original data.
No value is returned.
Zuguang Gu <z.gu@dkfz.de>
require(matrixStats) set.seed(123) mat = matrix(rnorm(1000), nrow = 100) lt = list(sd = rowSds(mat), mad = rowMads(mat)) top_elements_overlap(lt, top_n = 25, method = "venn") top_elements_overlap(lt, top_n = 25, method = "correspondance")