I need to know how to create a simple Venn diagram in rstudio. I have the following data: A=25, B=19, A&B=7
I have no idea wear to start.
I need to know how to create a simple Venn diagram in rstudio. I have the following data: A=25, B=19, A&B=7
I have no idea wear to start.
library(VennDiagram)
venn_plot <- draw.pairwise.venn(area1=25,
area2=19,
cross.area=7,
category=c('A', 'B'),
scaled=FALSE)
Source: http://www.di.fc.ul.pt/~jpn/r/GraphicalTools/Venn.html