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

Matplotlib에서 동일한 축에 여러 범례 그리기

<시간/>

Matplotlib에서 동일한 축에 여러 범례를 그리려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기 설정 및 서브플롯 사이 및 주변 여백 조정
  • 선폭 레이블이 서로 다른 두 목록을 사용하여 선 그리기 및 선 스타일 .
  • 첫 번째 범례를 오른쪽 상단에 배치합니다.
  • 아티스트, 즉 현재 축의 첫 번째 범례를 추가합니다.
  • 오른쪽 하단 위치의 현재 축에 두 번째 범례를 배치합니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

from matplotlib import pyplot as plt

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

line1, = plt.plot([1, 2, 3], label="Line 1", linestyle='--')
line2, = plt.plot([3, 2, 1], label="Line 2", linewidth=4)

first_legend = plt.legend(handles=[line1], loc='upper right')

plt.gca().add_artist(first_legend)
plt.legend(handles=[line2], loc='lower right')

plt.show()

출력

Matplotlib에서 동일한 축에 여러 범례 그리기