为了账号安全,请及时绑定邮箱和手机立即绑定

如何在matplotlib图上更改字体大小

如何在matplotlib图上更改字体大小

茅侃侃 2019-08-29 08:15:21
如何在matplotlib图上更改字体大小如何在matplotlib图上更改所有元素(刻度,标签,标题)的字体大小?我知道如何更改刻度标签尺寸,这是通过以下方式完成的:import matplotlib  matplotlib.rc('xtick', labelsize=20) matplotlib.rc('ytick', labelsize=20)但是如何改变其余部分呢?
查看完整描述

3 回答

?
德玛西亚99

TA贡献1770条经验 获得超3个赞

matplotlib文档中

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页面上找到可用属性的完整列表。


查看完整回答
反对 回复 2019-08-29
?
拉风的咖菲猫

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 ...


查看完整回答
反对 回复 2019-08-29
?
动漫人物

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)


查看完整回答
反对 回复 2019-08-29
  • 3 回答
  • 0 关注
  • 4740 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信