✔️한글 적용 코드 -> 매번 실행.
import matplotlib.pyplot as plt
from matplotlib import rc
%matplotlib inline
rc('font', family = 'Arial Unicode Ms')
plt.title("데이터사이언스");
from matplotlib import font_manager
f_path = "/Library/Fonts/Arial Unicode.ttf"
font_manager.FontProperties(fname=f_path).get_name()
'Arial Unicode MS'
'Python' 카테고리의 다른 글
Pandas Basic (0) | 2022.11.08 |
---|---|
[Jupiter notebook] read_csv (0) | 2022.11.07 |
[Python] Colab 주요 기능, 한글 폰트 (0) | 2022.11.07 |
[Python] conda 환경 (0) | 2022.11.07 |
01. 선형검색 (0) | 2022.10.29 |