@Totovader just asked if there are other packages for doing Venn diagrams in R besides the limma package. Anyone got tips?
Here's some notes on doing Venn diagrams with the limma packages.

|
@Totovader just asked if there are other packages for doing Venn diagrams in R besides the limma package. Anyone got tips? Here's some notes on doing Venn diagrams with the limma packages.
|
|||||
|
|
Duncan Murdoch has a venn package, which is not on CRAN. (hat tip to Gabor Grothendieck) You can also read about it in the "Journal of Statistical Software". |
|||
|
There is Vennerable package on R-forge.
|
|||
|
|
|
I use two custom functions that to the trick. My implementation of venndia plots the venn diagram and returns lists of overlaps between A and B (and C). See the code below. With these, you can
which will both plot and return the data. you can switch off returning the data by doing
since getdata is FALSE by default. /Daniel
|
|||
|
|
|
This comes very late but it might useful for others searching for an answer: vennDiagram It allows multiple sets (up to 7 if I am not mistaken), customizable colors and fonts, simple syntax and and best of all the size of the circles is proportional to the size of the data sets (at least when comparing 2 data sets). To install:
For those using bioconductor packages and working with genomic coordinates, recently vennDiagram was implemented in the package ChIPpeakAnno (version 2.5.12) and allows pretty intersections of Genomic coordinates of, for instance, Chip-seq peaks. For early adopters you might need to install the development package.
|
|||
|
|
|
The venn function in the gplots package is also useful if you need to create Venn Diagram of 4/5 sets. |
|||
|
|
|
I am compiling some of the packages that I know of, bvenn http://cran.r-project.org/web/packages/bvenn/index.html colorfulVennPlot http://cran.r-project.org/web/packages/colorfulVennPlot/index.html eVenn http://cran.r-project.org/web/packages/eVenn/index.html VennDiagram http://cran.r-project.org/web/packages/VennDiagram/VennDiagram.pdf Venneuler http://cran.r-project.org/web/packages/venneuler/index.html Vennerable http://goo.gl/YjQCc |
|||
|
|
|
Here is reference to another version for 3-variable data: http://elliotnoma.wordpress.com/2011/02/09/venn-diagram/ The code is also available in the package colorfulVennPlot: http://cran.r-project.org/web/packages/colorfulVennPlot/index.html |
|||||
|