Hi there,
I've ben having issues regarding venn diagrams. I have a really simple code for a venn diagram with a list of genes and i would like a list of the common genes i.e a list of the genes in the intersection
Cellcykel4 <-read.csv2(file.choose(),header = FALSE)
cclist4 <- Cellcykel4$V1
length(cclist4)
zd2 <-read.csv2(file.choose(),header = FALSE)
ZDlist2 <- zd2$V1
length(ZDlist2)
install.packages("VennDiagram")
library(VennDiagram)
venn.diagram(list("Cellcykel"=cclist4, "ZD"=ZDlist2),
fill = c("cyan","red"),
cex= 1.5,
filename = "4.C-mot-2.ZD.png",
print.mode =c("raw", "percent"))
I get a very nice image from this but how do I get the actual list of items in the intersection?
Kind regards,
Natasha