我有一个包含许多子图的图。
fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k')
fig.canvas.set_window_title('Window Title')
# Returns the Axes instance
ax = fig.add_subplot(311)
ax2 = fig.add_subplot(312)
ax3 = fig.add_subplot(313)
如何给子情节添加标题?
fig.suptitle
为所有图形添加一个标题,尽管ax.set_title()
存在,但后者没有为我的子图添加任何标题。
谢谢你的帮助。
< p >编辑: 修正了关于set_title()
的错别字。谢谢Rutger Kassies