[Python] matplotlib 한글 출력

데이터 분석/[Python] 기초

[Python] matplotlib 한글 출력

INCHELIN 2020. 12. 4. 17:46
728x90
import matplotlib.pyplot as plt
import seaborn as sns
import matplotlib

%matplotlib inline

import platform
path = '/Library/Fonts/NanumSquareRegular.ttf' # 개인 컴퓨터에 글꼴 경로에 맞게 설정!!
from matplotlib import font_manager, rc

if platform.system() == "Darwin":
    rc('font', family = 'AppleGothic')
elif platform.system() == 'Windows':
    font_name = font_manager.FontProperties(fname=path).get_name()
    rc('font', family = font_name)
else:
    print("Unknown system...")

 

추가적으로 (-) 마이너스가 출력하는 코드입니다

matplotlib.rcParams['axes.unicode_minus'] = False  

 

728x90