python绘图04|matplotlib-绘图风格(plt.s
python中matplotlib绘图时,如何使用plt.style.use切换绘图风格?
matplotlib中有哪些绘图风格可以使用?
matplotlib中各种风格是什么样子的?
首发于本人公众号:pythonic生物人
更好的阅读体验请戳:
python绘图04|matplotlib-绘图风格(plt.style)大全
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之下,您可以模仿着自定义一个自己的风格,这很简单。
点开一个ggplot的绘图风格看看 ,里面都是线型,颜色等的设置。
2、 绘图风格使用
例如,使用ggplot风格。
plt.style.use('ggplot')
[图片上传失败...(image-bd4f58-1595688368633)]
3、26种风格效果是什么样子的
参考资料
欢迎关注公众号:pythonic生物人