For instance, the following code:
import matplotlib.pyplot as plt
import matplotlib_venn as mv
import seaborn
cols = seaborn.color_palette(['orange', 'darkblue'])
plt.figure()
s1 = {'TIMP3', 'COL4A1', 'SERPINE1', 'SPARC', 'FBLN2', 'THBS2', 'SERPINE2', 'COL1A1', 'LTBP2'}
s2 = {'SPARK', 'FBLN1', 'VCAN', 'TIMP1', 'SERPINE2', 'SKIL', 'LTBP2', 'TIMP3', 'THBS2', 'TGFBR1', 'BGN', 'VEGFA', 'COL1A1', 'FBN1', 'FN1', 'COL4A1', 'MMP2', 'MMP14', 'COL1A2', 'PMPEA1', 'FGF2'}
mv.venn2_unweighted([s1, s2], ['Adult', 'Senescent'], set_colors=cols)
plt.show()
But it would be useful for me if the labels of which strings belong to each set were inside the circles instead (or perhaps as well as) the size of each set. Is this possible?