Hi.
I have around eight different lists with numerical values and i want to create a Venn plot for all of them. My lists looks like the above and have different length.
l1 = c(12,1234,544,6546,6445,45465,4566,1333)
l2 = c(89,2344,2346,6564,6424,770,12,4566,1333,4003,234,432)
l3 = c(4003,4002,432,1234)
l4 = ....
l5 = ....
I tried to use the vennDiagram from limma package but without any success and maybe because they have different length.
Is there any quick way to build a Venn diagram for them without calculating by hand the overlap values for each one with the other with intersect() function ?
Thank you
might be better to just provided a binary matrix and pair-wise overlaps than an unreadable Venn diagram