Side-by-side Venn diagram using Vennerable
I am trying to put two Venn diagrams in one single graph, i.e. I am using par(mfrow=c(1,2)) at the very beginning. However, when I use the Venn() function in the Vennerable package: VennCompare = Venn(SetNames = c("A", "B", "C"), Weight = c(0, 38, 1, 0, 1, 80, 0, 14)) pdf(file="Venn.pdf", width=12, height=6) par(mfrow=c(1,2)) plot(VennCompare, doWeights=FALSE) plot(VennCompare, doWeights=TRUE, show = list(SetLabels = TRUE, Faces = FALSE)) dev.off() The resultant pdf file contains 2 pages, and each page has a single Venn diagram. How can I put the two diagrams into a single page (i.e. side-by