Description Usage Arguments Details Value Author(s) Examples
Overlap of top elements from different metrics
1 2 3 |
object |
A list which contains values from different metrics. |
top_n |
Number of top rows. |
method |
|
fill |
Filled color for the Euler diagram. The value should be a color vector. Transparency of 0.5 are added internally. |
... |
Additional arguments passed to |
The i^th value in every vectors in object
should correspond to the same element from the original data.
No value is returned.
Zuguang Gu <z.gu@dkfz.de>
1 2 3 4 5 6 7 8 | 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 = 20, method = "euler")
top_elements_overlap(lt, top_n = 20, method = "upset")
top_elements_overlap(lt, top_n = 20, method = "venn")
top_elements_overlap(lt, top_n = 20, method = "correspondance")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.