Entering edit mode
3.6 years ago
somayeh bakhshalizadeh
▴
80
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