How to make easy venn (or euler) diagrams of taxa shared or unique to a group of samples
# Package with venn functions
library(MicEco)
# Data
library(phyloseq)
load("../data/physeq.RData")
ps_venn(phy, group = "Time", quantities = list(type=c("counts")))
ps_venn(phy, group = "Time", quantities = list(type=c("percent")))
ps_euler(phy, group = "Time", quantities = list(type=c("counts","percent")))
ps_euler(phy, group = "Time", quantities = list(type=c("counts")), fraction = 0.05)
ps_venn(phy, group = "Time", quantities = list(type=c("percent")), weight = TRUE)
ps_venn(phy, group = "Time", fill = c("red", "green", "blue"), alpha = 0.5, quantities = list(type=c("percent"), col = "white"))