我需要从维恩图中删除边框。典型的bty='n'
似乎不适用于venn软件包。关于如何删除它的任何想法?这是该图当前的外观https://ibb.co/nb06nF7
#install packages
install.packages("readxl"); install.packages("venn")
#Load packages
library(readxl); library(venn)
#Read the .xlsx data
data <- read_excel("~/Desktop/venn2.xlsx")
#Make the data a data.frame
data <- data.frame(venn)
#Making the Venn diagram (cexil option changes the size of numbers,
cexsn option changes the size of labels)
venn(data, ilab=FALSE, zcolor = 'style', opacity = 0.3, cexil = 0.8,
cexsn = 1, frame=F)
我希望维恩去掉边框。