본문 바로가기
Python/Matplotlib

[Python] Matplotlib Jupyter Notebook에서 한글 처리하는 법(차트 그릴 때 한글 사용 가능 방법)

by dong_su 2023. 11. 20.

주피터 노트북 최상단에 이 코드를 복붙하고 시작한다.

 

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sb

%matplotlib inline

import platform

from matplotlib import font_manager, rc
plt.rcParams['axes.unicode_minus'] = False

if platform.system() == 'Darwin':
    rc('font', family='AppleGothic')
elif platform.system() == 'Windows':
    path = "c:/Windows/Fonts/malgun.ttf"
    font_name = font_manager.FontProperties(fname=path).get_name()
    rc('font', family=font_name)
else:
    print('Unknown system... sorry~~~~')