Here's a sample venn diagram:
from matplotlib import pyplot as plt
import numpy as np
from matplotlib_venn import venn3, venn3_circles
plt.figure(figsize=(4,4))
vd = venn3(subsets=(1, 1, 1, 1, 1, 1, 1), set_labels = ('A', 'B', 'C'))
plt.show()
Here's a sample venn diagram:
from matplotlib import pyplot as plt
import numpy as np
from matplotlib_venn import venn3, venn3_circles
plt.figure(figsize=(4,4))
vd = venn3(subsets=(1, 1, 1, 1, 1, 1, 1), set_labels = ('A', 'B', 'C'))
plt.show()
I figured this out by looking at the code found in this question: Venn3: How to reposition circles and labels?
Specifically, this part:
Putting it all together (see how that 1 is all the way to the right now...):
There appear to be a lot of other things one can set about that number. A full list of all applicable callable methods can be found by running: