本文介绍了如何使用Pyplot在所有子图上方设置单个主标题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用pyplot.我有4个子图.如何在所有子图上方设置一个主标题? title()将其设置在最后一个子图上方.

I am using pyplot. I have 4 subplots. How to set a single, main title above all the subplots? title() sets it above the last subplot.

推荐答案

使用 pyplot.suptitle Figure.suptitle :

import matplotlib.pyplot as plt
import numpy as np

fig=plt.figure()
data=np.arange(900).reshape((30,30))
for i in range(1,5):
    ax=fig.add_subplot(2,2,i)        
    ax.imshow(data)

fig.suptitle('Main title') # or plt.suptitle('Main title')
plt.show()

这篇关于如何使用Pyplot在所有子图上方设置单个主标题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 08:21