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

matplotlib.hlines에서 레이블을 설정하는 방법은 무엇입니까?

<시간/>

matplotlib.hlines에 레이블을 설정하려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 축을 가로질러 수평선 추가(y=1, y=1 레이블, color='주황색' 사용) .
  • 축에 가로선 추가(y=2, y=2 레이블, color='red') .
  • 그림을 표시하려면 show()를 사용하세요. 방법.

import matplotlib.pyplot as plt

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Add horizontal line
plt.hlines(y=1, xmin=1, xmax=4, lw=7, color='orange')
plt.text(4, 1, 'y=1', ha='left', va='center')

# Add another horizontal line
plt.hlines(y=2, xmin=2, xmax=5, lw=7, color='red')
plt.text(2, 2, 'y=2', ha='right', va='center')

plt.show()

출력

다음 출력을 생성합니다.

matplotlib.hlines에서 레이블을 설정하는 방법은 무엇입니까? matplotlib.hlines에서 레이블을 설정하는 방법은 무엇입니까?