matplotlib 自带的几种美化样式

Posted shanger

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib 自带的几种美化样式相关的知识,希望对你有一定的参考价值。

1、用 matplotlib.pyplot.style.avaliable 可查看 matplotlib 自带的美化样式如下:

[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]

2、用如下的循环,可查看各种美化样式的效果

import numpy as np
import matplotlib.pyplot as plt

styles = plt.style.available

x = np.linspace(-10, 10)
y = np.sin(x)

for style in styles:
    plt.figure()
    plt.style.use(style)
    plt.plot(x, y)
    plt.title(style)
    plt.show()

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

 

 技术图片

以上是关于matplotlib 自带的几种美化样式的主要内容,如果未能解决你的问题,请参考以下文章

Laravel:如何在控制器的几种方法中重用代码片段

博客Valine评论样式美化

python通过Matplotlib绘制常见的几种图形

数据分析与图形化-seaborn作图总结

css input[type=file] 样式美化,input上传按钮美化

请详细说明HTML文件使用css样式的几种方法?