标题定位#

Matplotlib 可以显示居中的标题,与一组坐标轴的左侧对齐,以及与一组坐标轴的右侧对齐。

import matplotlib.pyplot as plt

plt.plot(range(10))

plt.title('Center Title')
plt.title('Left Title', loc='left')
plt.title('Right Title', loc='right')

plt.show()
Left Title, Center Title, Right Title

垂直位置会自动选择以避免装饰(例如最上面的 x 轴上的标签和刻度)

fig, axs = plt.subplots(1, 2, layout='constrained')

ax = axs[0]
ax.plot(range(10))
ax.xaxis.set_label_position('top')
ax.set_xlabel('X-label')
ax.set_title('Center Title')

ax = axs[1]
ax.plot(range(10))
ax.xaxis.set_label_position('top')
ax.xaxis.tick_top()
ax.set_xlabel('X-label')
ax.set_title('Center Title')
plt.show()
Center Title, Center Title

通过手动指定标题的 y 关键字参数或在 rcParams 中设置 rcParams["axes.titley"](默认值:None)可以关闭自动定位。

fig, axs = plt.subplots(1, 2, layout='constrained')

ax = axs[0]
ax.plot(range(10))
ax.xaxis.set_label_position('top')
ax.set_xlabel('X-label')
ax.set_title('Manual y', y=1.0, pad=-14)

plt.rcParams['axes.titley'] = 1.0    # y is in axes-relative coordinates.
plt.rcParams['axes.titlepad'] = -14  # pad is in points...
ax = axs[1]
ax.plot(range(10))
ax.set_xlabel('X-label')
ax.set_title('rcParam y')

plt.show()
Manual y, rcParam y

脚本的总运行时间:(0 分钟 1.765 秒)

由 Sphinx-Gallery 生成的画廊