draw and display a Venn diagram with up to 7 sets.
Hi
I want to draw a diagram for 7 data sets in R.
I entered the data in R as follows:
library("venn")
mydata<-read.table("d://mydata.txt//mydata.txt",sep=",",header=T)
mydata
venn("mydata",snames="abdominal,kidny,lung,heart,liver,spleen,intestine,meta-analysis",zcolor="style",borders=TRUE, box=TRUE, par=TRUE, ggplot=FALSE)
Error: Conditions 'abdominaldmty' do not match the set names from "snames" argument.
Can anyone help explain why this error occurs? Is my analysis method wrong?
Is there another solution for creating more than 7 datasets?
Regards
• 2,509 views
•
link
1 answer
The best way to present such interactions would be using the UpsetR package
• 0 views
•
link
Log in to answer this question.