source

Pyplot을 사용하여 모든 하위구 위에 단일 주 제목을 설정하는 방법은 무엇입니까?

gigabyte 2022. 10. 19. 21:08
반응형

Pyplot을 사용하여 모든 하위구 위에 단일 주 제목을 설정하는 방법은 무엇입니까?

사용하고 있다pyplot4개의 서브플롯이 있습니다.모든 서브플롯 위에 하나의 메인 타이틀을 설정하는 방법 title()마지막 하위구 위에 설정합니다.

또는 사용:

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()

여기에 이미지 설명 입력

몇 가지 포인트는 내 그림에 적용할 때 유용합니다.

  • 일관되게 사용하는 것이 좋습니다.fig.suptitle(title)보다는plt.suptitle(title)
  • 사용시fig.tight_layout()제목은 와 함께 옮겨야 한다.fig.subplots_adjust(top=0.88)
  • 글꼴 크기에 대해서는 아래 답변을 참조하십시오.

matplotlib 문서의 서브플롯 데모에서 가져온 마스터 제목으로 조정된 예제 코드입니다.

멋진 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()

서브플롯에 타이틀도 있는 경우는, 메인 타이틀의 사이즈를 조정할 필요가 있습니다.

plt.suptitle("Main Title", size=16)

언급URL : https://stackoverflow.com/questions/7066121/how-to-set-a-single-main-title-above-all-the-subplots-with-pyplot

반응형