3 回答
TA贡献1770条经验 获得超3个赞
font = {'family' : 'normal', 'weight' : 'bold', 'size' : 22}matplotlib.rc('font', **font)
这将所有项的字体设置为kwargs对象指定的字体font
。
或者,您也可以使用此答案中rcParams
update
建议的方法:
matplotlib.rcParams.update({'font.size': 22})
要么
import matplotlib.pyplot as plt plt.rcParams.update({'font.size': 22})
您可以在Customizing matplotlib页面上找到可用属性的完整列表。
TA贡献1995条经验 获得超2个赞
如果你像我这样的控制狂,你可能想要明确设置你所有的字体大小:
import matplotlib.pyplot as plt
SMALL_SIZE = 8
MEDIUM_SIZE = 10
BIGGER_SIZE = 12
plt.rc('font', size=SMALL_SIZE) # controls default text sizes
plt.rc('axes', titlesize=SMALL_SIZE) # fontsize of the axes title
plt.rc('axes', labelsize=MEDIUM_SIZE) # fontsize of the x and y labels
plt.rc('xtick', labelsize=SMALL_SIZE) # fontsize of the tick labels
plt.rc('ytick', labelsize=SMALL_SIZE) # fontsize of the tick labels
plt.rc('legend', fontsize=SMALL_SIZE) # legend fontsize
plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title
请注意,您还可以设置调用rc方法的大小matplotlib:
import matplotlib
SMALL_SIZE = 8
matplotlib.rc('font', size=SMALL_SIZE)
matplotlib.rc('axes', titlesize=SMALL_SIZE)
# and so on ...
TA贡献1815条经验 获得超10个赞
如果要仅为已创建的特定绘图更改fontsize,请尝试以下操作:
import matplotlib.pyplot as plt ax = plt.subplot(111, xlabel='x', ylabel='y', title='title')for item in ([ax.title, ax.xaxis.label, ax.yaxis.label] + ax.get_xticklabels() + ax.get_yticklabels()): item.set_fontsize(20)
添加回答
举报