![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fwun8D%2FbtqK84xXCFz%2FcjfenhL5pDW5iUhHJm5ogk%2Fimg.png)
[Python] matplotlib 한글 폰트 깨짐 현상 , 마이너스 기호(폰트)가 깨지는 현상 해결방법
# matplotlib 한글 폰트 깨짐 현상 import matplotlib.pyplot as plt import matplotlib as mpl %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..