본문 바로가기
Programming/python

matplotlib, style.use 사용해서 테마바꾸기

by 단창 2019. 7. 26.

print(plt.style.available)

하면

 

 

['bmh', 'classic', 'dark_background', 'fast', 'fivethirtyeight', 'ggplot', 'grayscale', 'seaborn-bright', 'seaborn-colorblind', 'seaborn-dark-palette', 'seaborn-dark', 'seaborn-darkgrid', 'seaborn-deep', 'seaborn-muted', 'seaborn-notebook', 'seaborn-paper', 'seaborn-pastel', 'seaborn-poster', 'seaborn-talk', 'seaborn-ticks', 'seaborn-white', 'seaborn-whitegrid', 'seaborn', 'Solarize_Light2', 'tableau-colorblind10', '_classic_test']

 

가능한 스타일이 나온다. 

이렇게 사용.

plt.style.use(['fivethirtyeight'])

 

폰트부터 몽땅 바뀐다. 

반응형