【发布时间】:2019-07-09 20:08:22
【问题描述】:
我需要从我的维恩图中删除边框。典型的 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)
我希望 venn 移除边框。
【问题讨论】:
标签: r data-visualization venn-diagram