matplotlib在子图下方设置标题代码
时间: 2023-05-17 19:03:31 浏览: 159
【python数据分析(23)】Matplotlib库绘图的子图、主次刻度、注解、图表输出
您可以使用plt.suptitle()函数在子图下方设置标题,示例代码如下:
import matplotlib.pyplot as plt
fig, axs = plt.subplots(2, 2)
axs[0, 0].plot([1, 2, 3, 4], [1, 4, 2, 3])
axs[0, 0].set_title('Subplot 1')
axs[0, 1].plot([1, 2, 3, 4], [2, 2, 3, 1])
axs[0, 1].set_title('Subplot 2')
axs[1, 0].plot([1, 2, 3, 4], [5, 4, 7, 1])
axs[1, 0].set_title('Subplot 3')
axs[1, 1].plot([1, 2, 3, 4], [1, 3, 2, 6])
axs[1, 1].set_title('Subplot 4')
plt.suptitle('Main Title')
plt.show()
阅读全文