Closed vertesy closed 1 year ago
Hey, thanks for the great package.
I am curious to know if there is a simple method to get a list of elements in each subset of your venn diagrams?
Similar in gplots::venn:
gplots::venn
xx.1 <- list(A = sort(sample(LETTERS, 15)), B = sort(sample(LETTERS, 15)), C = sort(sample(LETTERS, 15)), D = sort(sample(LETTERS, 15))) ItemsList <- gplots::venn(xx.1, show.plot = FALSE) lengths(attributes(ItemsList)$intersections) attributes(ItemsList)$intersections
resulting in
> attributes(ItemsList)$intersections $A [1] "C" $B [1] "D" "Q" $C [1] "B" $D [1] "V" $`A:B` [1] "N" $`A:C` [1] "E" "W"
https://stackoverflow.com/questions/65898472/how-to-obtain-the-list-of-elements-from-a-venn-diagram https://stackoverflow.com/questions/23559371/get-the-list-of-items-in-venn-diagram
Thanks for your time!
I believe this topic has been talked in #5 .
If you have further question, just reply in this issue.
Ok, thank you!
Hey, thanks for the great package.
I am curious to know if there is a simple method to get a list of elements in each subset of your venn diagrams?
Similar in
gplots::venn
:resulting in
If so, u may want to share also at:
https://stackoverflow.com/questions/65898472/how-to-obtain-the-list-of-elements-from-a-venn-diagram https://stackoverflow.com/questions/23559371/get-the-list-of-items-in-venn-diagram
Thanks for your time!