matplotlib 에서 한글로 출력이 안 되는 경우가 있는데 이건 matplotlib에서 제공하는 기본폰트가 한글 font를 가지고 있지 않아서 그렇습니다. 그래서 title 부분을 한글로 해서 출력했더니 네모로만 표시되어 있습니다. 이런 경우 font를 변경해주어야 합니다. 다음과 같이 변경합니다. 저는 나눔고딕(NanumGothic) 폰트를 설정했습니다. >>> import matplotlib.pyplot as plt >>> plt.rc('font',family='NanumGothic') >>> print(plt.rcParams['font.family']) ['NanumGothic'] 이렇게 했는데 설정이 안되거나 'Font family [] not found' 에러가 뜨면 다음과 같이 합니다. 먼..