VennDetail
VennDetail copied to clipboard
something wrong with the newest VennDiagram
I check the data and I found there is something wrong with the VennDiagram since I used this package to make the venn plot. See below:
A <- sample(1:100, 40, replace = FALSE)
B <- sample(1:100, 60, replace = FALSE)
library(VennDiagram)
grid.draw(venn.diagram(list(A=A,B=B),filename=NULL))
And this happen since the VennDiagram update their package (VennDiagram_1.7.0.tar.gz 2021-10-30 16:00 1.8M ) If you use the old version of VennDiagram which will be fine (VennDiagram_1.6.20.tar.gz 2018-03-28 16:54 1.8M ).
Download the old version and use R CMD INSTALL VennDiagram_1.6.20.tar.gz will solve the problem.