This is a test version of Biostars. For the public version, visit https://www.biostars.org.
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

venn

1 answer

The best way to present such interactions would be using the UpsetR package

Log in to answer this question.