我使用matplotlib绘制一个带有四个子图的图形,set_title方法将title((a) (b) (c) (d))放在每个子图的顶部,参见下面的代码示例.
set_title
(a) (b) (c) (d)
fig = pyplot.figure() ax = fig.add_subplot(1, 4, 1) ax.set_title('(a)')
但我想把每个标题放在每个子图的底部.我无法通过matplotlib文档和谷歌找出它.所以我需要你的帮助,非常感谢.
python matplotlib title figure
figure ×1
matplotlib ×1
python ×1
title ×1