matplotlib绘图风格

列出所有的绘图风格

   style_list = ['default', 'classic'] + sorted(style for style in plt.style.available if style != 'classic')
        

使用指定的风格

   plt.style.use()  

风格列举




matplotlib绘图风格_第1张图片

你可能感兴趣的:(Python)