13

我有以下维恩图:

from matplotlib import pyplot as plt
from matplotlib_venn import venn3, venn3_circles
set1 = set(['A', 'B', 'C', 'D'])
set2 = set(['B', 'C', 'D', 'E'])
set3 = set(['C', 'D',' E', 'F', 'G'])

venn3([set1, set2, set3], ('Set1', 'Set2', 'Set3'))

看起来像这样:

在此处输入图像描述

如何控制绘图的字体大小?我想增加它。

4

3 回答 3

21

如果out是 由 返回的对象venn3(),则文本对象仅存储为out.set_labelsand out.subset_labels,因此您可以执行以下操作:

from matplotlib import pyplot as plt
from matplotlib_venn import venn3, venn3_circles
set1 = set(['A', 'B', 'C', 'D'])
set2 = set(['B', 'C', 'D', 'E'])
set3 = set(['C', 'D',' E', 'F', 'G'])

out = venn3([set1, set2, set3], ('Set1', 'Set2', 'Set3'))
for text in out.set_labels:
    text.set_fontsize(14)
for text in out.subset_labels:
    text.set_fontsize(16)
于 2015-04-03T04:34:25.080 回答
2

在我的例子中,out.subset_labels 的一些值是 NoneType。为了省略这个问题,我做了:

from matplotlib import pyplot as plt
from matplotlib_venn import venn3, venn3_circles
set1 = set(['A', 'B', 'C', 'D'])
set2 = set(['B', 'C', 'D', 'E'])
set3 = set(['C', 'D',' E', 'F', 'G'])

out = venn3([set1, set2, set3], ('Set1', 'Set2', 'Set3'))
for text in out.set_labels:
    text.set_fontsize(15)
for x in range(len(out.subset_labels)):
    if out.subset_labels[x] is not None:
        out.subset_labels[x].set_fontsize(15)
于 2020-07-08T09:23:32.470 回答
0

我只是在 Matplotlib 中更改了字体大小(也可以使用 rcParams 更改文本颜色)。

from matplotlib_venn import venn3
from matplotlib import pyplot as plt
plt.figure(figsize = (6, 5))
font1 = {'family':'serif','color':'black','size':16} # use for title
font2 = {'family': 'Comic Sans MS', 'size': 8.5} # use for labels
plt.rc('font', **font2) # sets the default font 
plt.rcParams['text.color'] = 'darkred' # changes default text colour
venn3(subsets=({'A', 'B', 'C', 'D', 'X', 'Y', 'Z'}, 
               {'A', 'B', 'E', 'F', 'P'}, {'B', 'C', 'E', 'G'}), 
      set_labels=('Set1', 'Set2', 'Set3'),
      set_colors=("coral", "skyblue", "lightgreen"), alpha=0.9)

plt.title("Changing Font Size in Matplotlib_venn Diagrams", fontdict=font1)
plt.show()

于 2021-12-05T05:29:56.280 回答