matplot 계열 시각화 툴에서 한글 폰트 사용하기
matplot
계열인 seaborn
과 pandas
를 이용할 때, 한글이나 -
폰트는 깨진다.
이를 해결하기 위해서는 다음과 같은 코드를 추가해줘야 한다고한다.
코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 윈도우 : "Malgun Gothic"
# 맥 : "AppleGothic"
def get_font_family():
"""
시스템 환경에 따른 기본 폰트명을 반환하는 함수
"""
import platform
system_name = platform.system()
# colab 사용자는 system_name이 'Linux'로 확인
if system_name == "Darwin" :
font_family = "AppleGothic"
elif system_name == "Windows":
font_family = "Malgun Gothic"
else:
!apt-get install fonts-nanum -qq > /dev/null
!fc-cache -fv
import matplotlib as mpl
mpl.font_manager._rebuild()
findfont = mpl.font_manager.fontManager.findfont
mpl.font_manager.findfont = findfont
mpl.backends.backend_agg.findfont = findfont
font_family = "NanumBarunGothic"
return font_family
plt.style.use("seaborn-whitegrid")
# 폰트설정
plt.rc("font", family=get_font_family())
# 마이너스폰트 설정
plt.rc("axes", unicode_minus=False)
# 그래프에 retina display 적용
from IPython.display import set_matplotlib_formats
%config InlineBackend.figure_format = "retina"
추가
koreanize-matplotlib 라이브러리를 추가하는 것만으로도 위 과정을 생략 할 수 있다.
Comments powered by Disqus.