230424 / BSA08. matplotlib 한글 처리

BSA06_Matplotlib-Korean.ipynb

 

패키지 불러오기

import matplotlib.pyplot as plt
import matplotlib

 

한글 처리 방법

1. C:\Windows\fonts에 있는 한글 폰트 사용

matplotlib.rc('font',family ='NanumGothic')
plt.plot([1,2,3],[4,5,8])
plt.xlabel("문자")

 

2. matplotlib에서 관리하는 폰트 폴더에 있는 한글 폰트 사용

# 위치 확인
print(matplotlib.matplotlib_fname())

matplotlib.rcParams["font.family"] = 'NanumGothic'
plt.plot([1,2,3],[4,5,8])
plt.xlabel("문자")