Get the list of items in Venn diagram
问题 It is easy to the draw a Venn diagram with the following code: library(VennDiagram) set.seed(1) # For reproducibility of results xx.1 <- list(A = sample(LETTERS, 15), B = sample(LETTERS, 15), C = sample(LETTERS, 15), D = sample(LETTERS, 15)) venn.diagram(xx.1, filename ="1.tiff", height = 1000, width = 1000) But how do I figure out the items in each field? For example, I would like to know what are the two letters only found in A? EDIT : Here is my solution, it is not perfect but could give