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

Matplotlib의 플롯 범례에 텍스트 레이블을 어떻게 표시합니까?

<시간/>

플롯 범례에 텍스트 레이블을 표시하기 위해 인수에 handlelength=0, handletextpad=0 및 fancybox=0과 함께 legend 메소드를 사용할 수 있습니다.

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • 임의의 x 만들기 및 y numpy를 사용하는 데이터 포인트.

  • subplots()를 사용하여 Figure와 서브플롯 세트 생성 방법.

  • 플롯 xy plot()을 사용하는 데이터 포인트 범례에 대해 "지그재그" 레이블이 있는 메서드

  • 범례() 사용 handlelength=0으로 플롯의 레이블을 배치하는 방법 , handletextpad=0fancybox=0 인수에서.

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.random.rand(100)
y = np.random.rand(100)
fig, ax = plt.subplots()
ax.plot(x, y, label='Zig-Zag', c="red")
ax.legend(loc="upper right", handlelength=0, handletextpad=0, fancybox=True)
plt.show()

출력

Matplotlib의 플롯 범례에 텍스트 레이블을 어떻게 표시합니까?