반응형 Settings1 matplotlib 기본설정 (한글깨짐, 음수깨짐, 레티나, 테마 지정) import seaborn as sns import matplotlib.pyplot as plt from matplotlib import style import pandas as pd #plot테마를 지정한다. style.use('ggplot') or plt.style.use('ggplot') plt.style.use('fivethirtyeight') #한글 폰트 맑은고딕을 사용한다. plt.rc('font', family='Malgun Gothic') #음수표현이 깨지지 않도록 한다. plt.rc('axes', unicode_minus=False) #plt.rc('font', family='AppleGothic') from IPython.display import set_matplotlib_format.. 2020. 9. 12. 이전 1 다음 반응형