Plotting multiple Venndiagram (or diagrams) in single screen
Here is an example of plotting 4 venn diagrams in a single screen with a 2*2 layout.
library(VennDiagram)
#defining vectors
av<- 1:10
bv<- 12:20
cv<- 7:15
# Building venndiagram grid objects (i.e.
Axis break in R for line plot
Planning to draw a density line-plot with gapped (or broken) Y-axis in R, I initially tried out the plotrix package (version 3.8.1). However after facing a couple of problems, I ended up using the standard R graphics codes to draw the correct gapped line-plot.