Home [Python] JupyterLab 한글 깨짐, 설정하는 방법
Post
Cancel

[Python] JupyterLab 한글 깨짐, 설정하는 방법

1
2
3
4
5
6
7
import maplotlib.pylab as plt
import matplotlib
# 한글 깨짐
plt.rcParams['font.famlity'] = 'D2 Coding'
plt.rcParams['font.size'] = '11'
# 마이너스 깨짐 (matplotrc 에서 수정하면 이후에 수정할 필요 없음)
matplotlib.rcParams['axes.unique_minus'] = False
1
2
3
import matplotlib.font_manager as fm
# 설치된 론트 확인
print(fm.findSystemFonts(fontpaths = None, fontext = 'ttf')) 
This post is licensed under CC BY 4.0 by the author.

[Airflow] Your Airflow administrator chose not to expose the configuration, most likely for security reasons.

[Python] Pandas에서 NaN인 로우 가져오기