My question involves how to annotate a venn diagram with the actual values in addition to the default counts, using any R package. Below is a minimal example of the data:
list.items <- list(method1=c("item1","item2","item3","item4","item5","item6"),
method2=c("item1","item7","item3","item4","item8","item6"),
method3=c("item1","item7","item9","item4","item10","item11"))
library(gplots)
venn(list.items)
This returns the venn diagram:
I would like to see for example what the 3 items that method3 has actually are? e.g. item3,item5 & item7.
I would like to have a venn diagram such as the one in: http://openi.nlm.nih.gov/detailedresult.php?img=3026361_1471-2105-11-S6-S14-9&req=4 Any assistance would be greatly appreciated.