Como definir um único título principal acima de todas as subtramas com o Pyplot?

219

Eu estou usando pyplot. Eu tenho 4 subparcelas. Como definir um único título principal acima de todas as subparcelas? title()define acima da última subtrama.

Jakub M.
fonte

Respostas:

283

Use pyplot.suptitleou 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()

insira a descrição da imagem aqui

unutbu
fonte
1
Trabalha com suptitle. Ainda assim, eu vi seu "truque sem vergonha!" :)
Jakub M.
6
Note que é plt.suptitle()e não plt.subtitle(). Eu não percebi isso no começo e recebi um erro desagradável! : D
Dataman 10/10
127

Alguns pontos que considero úteis ao aplicar isso a meus próprios gráficos:

  • Eu prefiro a consistência de usar fig.suptitle(title)do queplt.suptitle(title)
  • Ao usar fig.tight_layout()o título, é necessário alternar comfig.subplots_adjust(top=0.88)
  • Veja a resposta abaixo sobre o tamanho da fonte

Exemplo de código extraído da demonstração de subtramas nos documentos matplotlib e ajustado com um título principal.

Um belo enredo 4x4

import matplotlib.pyplot as plt
import numpy as np

# Simple data to display in various forms
x = np.linspace(0, 2 * np.pi, 400)
y = np.sin(x ** 2)

fig, axarr = plt.subplots(2, 2)
fig.suptitle("This Main Title is Nicely Formatted", fontsize=16)

axarr[0, 0].plot(x, y)
axarr[0, 0].set_title('Axis [0,0] Subtitle')
axarr[0, 1].scatter(x, y)
axarr[0, 1].set_title('Axis [0,1] Subtitle')
axarr[1, 0].plot(x, y ** 2)
axarr[1, 0].set_title('Axis [1,0] Subtitle')
axarr[1, 1].scatter(x, y ** 2)
axarr[1, 1].set_title('Axis [1,1] Subtitle')

# # Fine-tune figure; hide x ticks for top plots and y ticks for right plots
plt.setp([a.get_xticklabels() for a in axarr[0, :]], visible=False)
plt.setp([a.get_yticklabels() for a in axarr[:, 1]], visible=False)

# Tight layout often produces nice results
# but requires the title to be spaced accordingly
fig.tight_layout()
fig.subplots_adjust(top=0.88)

plt.show()
Alexander McFarlane
fonte
2
Simplesmente adicionar figure.suptitle()não é suficiente, pois os títulos das subparcelas se misturam com o suptitile, fig.subplots_adjust(top=0.88)é bom.
GoingMyWay 22/03/19
43

Se suas subparcelas também tiverem títulos, pode ser necessário ajustar o tamanho do título principal:

plt.suptitle("Main Title", size=16)
pentandrous
fonte
Alterar o tamanho da fonte torna muito melhor. Obrigado!
Wok
8
No python 2.7, é o tamanho da fonte em vez do tamanho . plt.suptitle("Main Title", fontsize=16)
Temak