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

Matplotlib에서 범례 글꼴 이름을 변경하는 방법은 무엇입니까?

<시간/>

matplotlib에서 범례 글꼴 이름을 변경하려면 다음 단계를 수행할 수 있습니다. -

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

  • numpy를 사용하여 x 데이터 포인트를 만듭니다.

  • 플롯 x, sin(x)cos(x) plot() 사용 방법.

  • 범례() 사용 범례를 배치하는 방법입니다.

  • legend.get_text() 반복 범례 글꼴 이름을 업데이트합니다.

  • 그림을 표시하려면 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.linspace(-5, 5, 100)

plt.plot(x, np.sin(x), label="$y=sin(x)$")
plt.plot(x, np.cos(x), label="$y=cos(x)$")

legend = plt.legend(loc='upper right')

i = 1
for t in legend.get_texts():
   t.set_text("name %d" % i)
   i += 1

plt.show()

출력

Matplotlib에서 범례 글꼴 이름을 변경하는 방법은 무엇입니까?