Is it possible to draw 3 set non-proportional Venn diagram with python? Right now I'm using matplotlib-venn
to draw 3 circles Venn diagram. But some of the intersection values are very small compared to others. So those sections are almost not visible.
This is the code:
set1 = set(list1)
set2 = set(list2)
set3 = set(list3)
v = venn3([set1, set2, set3], set_labels = ("set1", "set2", "set3"))
plt.title("title")
plt.show()