Matplotlib画图内置样式

内置样式

# 全部内置样式

from matplotlib import style
print(plt.style.available)

‘bmh’, ‘classic’, ‘dark_background’, ‘fast’, ‘fivethirtyeight’, ‘ggplot’, ‘grayscale’, ‘seaborn-bright’, ‘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('bmh')

这里的背景有格线是因为我用了

plt.grid(True, linestyle='-.')

以下是我尝试了每一种内置格式,可以根据自己的需求选择合适的:
(1)bmh
Matplotlib画图内置样式_第1张图片(2)classic
Matplotlib画图内置样式_第2张图片(3)dark_background
Matplotlib画图内置样式_第3张图片(4)fast
Matplotlib画图内置样式_第4张图片(5)fivethirtyeight
Matplotlib画图内置样式_第5张图片(6)ggplot
Matplotlib画图内置样式_第6张图片(7) ‘grayscale’
Matplotlib画图内置样式_第7张图片(8)‘seaborn-bright’
Matplotlib画图内置样式_第8张图片(9) seaborn-muted
Matplotlib画图内置样式_第9张图片(10) seaborn-notebook
Matplotlib画图内置样式_第10张图片
(11) seaborn-paper
Matplotlib画图内置样式_第11张图片
(12)seaborn-pastel
Matplotlib画图内置样式_第12张图片
(13) seaborn-poster
Matplotlib画图内置样式_第13张图片

(14) seaborn-talk
Matplotlib画图内置样式_第14张图片

(15) seaborn-ticks
Matplotlib画图内置样式_第15张图片

(16) seaborn-white
Matplotlib画图内置样式_第16张图片

(17) seaborn-whitegrid
Matplotlib画图内置样式_第17张图片

(18) seaborn
Matplotlib画图内置样式_第18张图片

(19) Solarize_Light2
Matplotlib画图内置样式_第19张图片

(20) tableau-colorblind10
Matplotlib画图内置样式_第20张图片
(21) _classic_test
Matplotlib画图内置样式_第21张图片

你可能感兴趣的:(python)