search for: drawvenndiagram

Displaying 2 results from an estimated 2 matches for "drawvenndiagram".

2010 May 19
1
colored venn diagram
Hi list, This is probably too much to ask, but I'm wondering if there is a ready-to-use function somewhere that allows me to color one area of a venn diagram (e.g. the intersection of two sets)? Thanks! ...Tao
2009 Oct 29
0
a minor bug in "venn" from gplots?
...39;m using R-2.9.0 on WinXP, gplots 2.7.1).? gplots 2.7.3 has the same problem. ###========================== pdf("test.pdf") A<- 1:20 B<- 1:20 C<- 2:20 D<- 3:21 input<-list(A,B,C,D) venn(input) dev.off() ###========================== By looking at the code of "drawVennDiagram", I think the problem comes from the fact there are one grid.newpage() call and two plot function calls when numCircles==4 (see below).? I wonder the grid.newpage() and the second plot call are necessary? Thanks a lot. ...Tao ##==============================================================...