**Package ‘![VennDiagram][1]’.**
How can I get the list of common objects in each combination?
For e.g. what are the common 44 Genes in interset (similar image got from online)?
I have used below scripts
Overlap <- calculate.overlap(x = list(BB, BB, BRR))
Overlap[[1]]
But in this method, I can not find the list of 1761, 466 genes
how these numbers are given?
Even when I tried Overlap$a5
, Overlap$a7
, etc this also not given some of the values correctly?
Could someone help me?
Provide example data,
calculate.overlap
does exactly what you need, try the examples from the manuals. Also, whyBB
is repeated twice?If you need just the overlap of genes from 3 sets, try:
Or more generic solution: