Description Usage Arguments Value Author(s) Examples
Comparing two lists of features (ordered by p-value or logFC...)
1 2 | compareLists(listeA, listeB, main = "", labelA = NULL, labelB = NULL,
choice = c("both", "curve", "venn"))
|
listeA |
a first vector of features |
listeB |
a second vector of features |
main |
common title of the two figures produced |
labelA |
label for list A |
labelB |
label for list B |
choice |
what to plot: curve, venn diagram or both |
A figure with a curve (left) and a Venn diagram (right)
Hugo Varet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | listeA <- sort(sample(1:100,50,FALSE))
listeB <- sort(sample(1:100,50,FALSE))
compareLists(listeA,listeB)
listeA <- sort(sample(1:100,10,FALSE))
listeB <- sort(sample(1:100,10,FALSE))
compareLists(listeA,listeB)
listeA <- sort(sample(1:100,50,FALSE))
listeB <- sort(sample(1:100,80,FALSE))
compareLists(listeA,listeB)
listeA <- sort(sample(1:100,80,FALSE))
listeB <- sort(sample(1:100,30,FALSE))
compareLists(listeA,listeB)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.