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

Matplotlib에서 X축 범위에 주석을 추가하는 방법은 무엇입니까?

<시간/>

matplotlib에서 X축 범위에 주석을 달기 위해 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • numpy를 사용하여 xx 및 yy 데이터 요소를 만듭니다.
  • 그림과 서브플롯 세트를 생성합니다.
  • plot()을 사용하여 xx 및 yy 데이터 요소를 플로팅합니다. 방법.
  • 축의 ylim을 설정합니다.
  • 화살표와 범위 태그 이름을 배치하려면 주석 방법을 사용하세요.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import matplotlib.pyplot as plt
import numpy as np

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

xx = np.linspace(0, 10)
yy = np.sin(xx)

fig, ax = plt.subplots(1, 1)

ax.plot(xx, yy)
ax.set_ylim([-2, 2])

ax.annotate('', xy=(5,2), xytext=(8,2),
            xycoords='data', textcoords='data',
            arrowprops={'arrowstyle': '<|-|>'}, color='yellow')

ax.annotate('Maximum Range', xy=(5,5), ha='center', va='center', color='red')

plt.show()

출력

Matplotlib에서 X축 범위에 주석을 추가하는 방법은 무엇입니까? Matplotlib에서 X축 범위에 주석을 추가하는 방법은 무엇입니까?