[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..