Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib를 사용하여 A, B, C로 그림의 서브플롯에 주석 달기

<시간/>

matplotlib를 사용하여 A, B 및 C로 그림의 서브플롯에 주석을 추가하려면 다음 단계를 수행할 수 있습니다.

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • nrows=1을 사용하여 그림 및 서브플롯 세트 생성 및 ncols=3 .
  • 배열에 대해 1D 반복기를 만듭니다.
  • 각 축을 반복하고 데이터를 이미지로 표시합니다.
  • 루프 자체에 텍스트 A, B 및 C를 배치합니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
from matplotlib import pyplot as plt
import string
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, axs = plt.subplots(1, 3)
axs = axs.flat
for index, ax in enumerate(axs):
ax.imshow(np.random.randn(4, 4), interpolation='nearest',
cmap="copper")
ax.text(0.45, 1.1, string.ascii_uppercase[index],
transform=ax.transAxes,
size=20, weight='bold')
plt.show()

출력

Matplotlib를 사용하여 A, B, C로 그림의 서브플롯에 주석 달기