Entering edit mode
2.1 years ago
rufusek500
•
0
Hi,
I already created Venn Diagram from my dataset, but I have some doubts. Why are there same 0 everywhere? In my file genes have mean above 0, therefore I'm wondering what is reason. Perhaps should I use other command than current?
The command:
up <- as.data.frame(degenes_up)
SET1=up$"0vs3hours"
SET2=up$"0vs6hours"
SET3=up$"0vs12hours"
SET4=up$"0vs24hours"
SET1[is.na(SET1)]=""
SET2[is.na(SET2)]=""
SET3[is.na(SET3)]=""
SET4[is.na(SET4)]=""
v=venn.diagram(list("ovs3hours"=SET1, "ovs6hours"=SET2, "ovs12hours"=SET3, "0vs24hours"=SET4), fill=c("blue","white","orange", "green"), alpha=c(0.5,0.5,0.5,0.5),filename=NULL )
jpeg("venndiagram_up.jpg")
grid.newpage()
grid.draw(v)
dev.off()
You need to show your data, we can't answer as it stands because everything stems from your data