matplotlib에서 일본어 글꼴을 사용하려면

3337 단어 파이썬matplotlib
조금 조사하면 「matplotlibrc의 재기록」이라든지, 많은 방법은 있는 것 같습니다만, 왠지 번거로웠기 때문에 제일 간단할까라고 생각되는 방법을 메모해 둡니다.

ttf 파일 다운로드



IPAex 폰트/IPA 폰트
준비로서, 예를 들어 위와 같은 사이트에서 TTF 글꼴 파일을 다운로드합니다.

설정



시도에 간단한 꺾은선형 차트에 레이블을 붙이십시오.
%matplotlib inline
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties


font_path= "ttfファイルのPATH"
font_prop =matplotlib.font_manager.FontProperties(fname=font_path,size=20)

x = [1,2, 3, 4, 5]
y = [5, 1, 3, 2, 4]


plt.xlabel('xラベル',fontproperties=font_prop)
plt.ylabel('yラベル',fontproperties=font_prop)
plt.plot(x, y)
plt.show()



참고



matplotlib에서 일본어 글꼴을 사용하는 샘플
matplotlib의 일본어

좋은 웹페이지 즐겨찾기