本文介绍了带项目标签的维恩图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我有两个向量
foo <- c('a','b','c','d')
baa <- c('a','e','f','g')
有人知道产生维恩图的方法吗,但是向量项在图中可见.
Does anyone know of a way to produce a venn diagram but have the vector items visualised within the diagram.
是这样吗? (在PowerPoint中制作)
Like so? (made in powerpoint)
推荐答案
使用RAM
软件包:
library(RAM)
foo <- c('a','b','c','d')
baa <- c('a','e','f','g')
group.venn(list(foo=foo, baa=baa), label=TRUE,
fill = c("orange", "blue"),
cat.pos = c(0, 0),
lab.cex=1.1)
这篇关于带项目标签的维恩图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!