powered by
unite_pairs returns the pairwise unions of the sets in a Venn object.
unite_pairs
Venn
# S4 method for Venn unite_pairs(venn, slice = "all")
(Required) A Venn object.
(Optional) The names or the indices of sets of interest. Default is "all", meaning the pairwise intersections will be calculated for all the sets.
A list showing the pairwise unions of the sets.
# NOT RUN { venn = Venn(list(letters[1:10], letters[3:12], letters[6:15], letters[9:18])) unite_pairs(venn) unite_pairs(venn, slice = 1:3) # }
Run the code above in your browser using DataLab