# % 한글이 깨지는 경우
from matplotlib import font_manager, rc
import matplotlib
import platform
if platform .system() == 'Windows':
# 원도우인 경우
font_name =font_manager.FontProperties(fname ='c:/Windows/Fonts/malgun.ttf').get_name()
rc('font', family = font_name)
else:
# MAC인 경우
rc('font', family= 'AppleGothic')
matplotlib.rcParams['axes.unicode_minus'] = False
'Programming Language > Python' 카테고리의 다른 글
[Python] iloc와 loc (0) | 2024.06.13 |
---|---|
[Python] Pandase(판다스) (0) | 2024.06.13 |
[Python] Numpy(넘파이) (0) | 2024.06.13 |
[Python] 정규 표현식(RegExp) (0) | 2024.06.13 |
[Python] Math.gcd - 최대공약수 (0) | 2024.06.12 |