Python可视化|matplotlib05-绘图风格大全

python中matplotlib绘图时,默认风格背景色为白色,无网格线,可以使用plt.style.use切换绘图风格。

目录

欢迎随缘关注@pythonic生物人

1、matplotlib有哪些绘图风格

2、 绘图风格使用

3、26种风格效果是什么样子的 

 4、参考资料


1、matplotlib有哪些绘图风格

使用plt.style.available输出所有风格名称,共计26种。

import matplotlib.pyplot as plt       
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']

每种风格的源码都在路径xx\Lib\site-packages\matplotlib\mpl-data\stylelib之下,您可以模仿着自定义一个自己的风格,这很简单。

Python可视化|matplotlib05-绘图风格大全_第1张图片

点开一个ggplot的绘图风格看看 ,里面都是线型,颜色等的设置。

 

Python可视化|matplotlib05-绘图风格大全_第2张图片


2、 绘图风格使用

例如,使用ggplot风格。

plt.style.use('ggplot')

3、26种风格效果是什么样子的 

Python可视化|matplotlib05-绘图风格大全_第3张图片

 4、参考资料

https://matplotlib.org/gallery/style_sheets/style_sheets_reference.html#sphx-glr-gallery-style-sheets-style-sheets-reference-py

欢迎随缘关注@pythonic生物人

 

你可能感兴趣的:(Python可视化,python,数据可视化,数据分析,matplotlib)