Create venn diagram in python with 4 circles

Question:

How can I create a venn diagram in python from 4 sets? Seems like the limit in matplotlib is only 3?

from matplotlib_venn import venn3

v = venn3(
    [
        set(ether_list),
        set(bitcoin_list),
        set(doge_list),
    ],
)
Asked By: heyzi1992

||

Answers:

Venn diagrams with circles can work only with <4 sets, because the geometrical properties of intersections (some won’t be possible to show). Some python libraries that allow you to show venn diagrams with more exotic shapes are:

Answered By: rikyeah
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.