python绘图04|matplotlib-绘图风格(plt.s

作者: pythonic生物人 | 来源:发表于2020-07-25 22:47 被阅读0次

    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种风格效果是什么样子的


    参考资料

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

    欢迎关注公众号:pythonic生物人

    干货,真香

    相关文章

      网友评论

        本文标题:python绘图04|matplotlib-绘图风格(plt.s

        本文链接:https://www.haomeiwen.com/subject/oyrvlktx.html