I have the following:
type <- c('a', 'b', 'c', 'a&b', 'a&c', 'b&c', 'a&b&c')
distribution <- c(.25, .1, .12, .18, .15, .05, .15)
I would like to create a bubble chart like the one shown in the selected answer to this question: Proportional venn diagram for more than 3 sets where the bubble areas are proportional to the values in the distribution vector and the connecting lines show the relationship between the 3 main bubbles 'a', 'b', and 'c'.
Using the
igraph
library with your data, you could create edges and vertices to represent your desired plot. Here's one way to do itAnd this is the plot I got