matplotlib에서 굵은 글꼴 두께 LaTeX 축 레이블을 만들기 위해 다음 단계를 수행할 수 있습니다.-
- numpy를 사용하여 x 및 y 데이터 포인트를 생성합니다.
- subplot() 사용 메서드, 현재 그림에 서브플롯을 추가합니다.
- set_xticks를 사용하여 데이터 포인트 x 및 y로 x 및 y 틱 설정 및 set_yticks 방법입니다.
- plot()을 사용하여 x 및 y 플롯 color=red 메서드
- 굵은 글꼴을 설정하기 위해 LaTeX 표현을 사용할 수 있습니다.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예시
import numpy as np from matplotlib import pyplot as plt, font_manager as fm plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True plt.rcParams["font.fantasy"] = "Comic Sans MS" x = np.array([1, 2, 3, 4]) y = np.exp(x) ax1 = plt.subplot() ax1.set_xticks(x) ax1.set_yticks(y) ax1.plot(x, y, c="red") ax1.set_xticklabels(["$\\bf{one}$", "$\\bf{two}$", "$\\bf{three}$", "$\\bf{four}$"], rotation=45) ax1.set_yticklabels(["$\\bf{:.2f}$".format(y[0]), "$\\bf{:.2f}$".format(y[1]), "$\\bf{:.2f}$".format(y[2]), "$\\bf{:.2f}$".format(y[3])], rotation=45) plt.tight_layout() plt.show()
출력