码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib.pyplot设置画布主题

时间:2021-02-24 13:05:31      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pat   white   ble   imp   ack   title   tle   pre   ali   

import matplotlib.pyplot as plt

# 定义一个画图函数
def sinplot(flip = 1):
    x = np.linspace(0,10,100)
    for i in range(1,4):
        y = np.sin(x + i * 0.5) * (4 - i) * flip
        plt.plot(x, y)

plt.style.available # 获取所有主题,返回一个列表
[‘Solarize_Light2‘,
 ‘_classic_test_patch‘,
 ‘bmh‘,
 ‘classic‘,
 ‘dark_background‘,
 ‘fast‘,
 ‘fivethirtyeight‘,
 ‘ggplot‘,
 ‘grayscale‘,
 ‘seaborn‘,
 ‘seaborn-bright‘,
 ‘seaborn-colorblind‘,
 ‘seaborn-dark‘,
 ‘seaborn-dark-palette‘,
 ‘seaborn-darkgrid‘,
 ‘seaborn-deep‘,
 ‘seaborn-muted‘,
 ‘seaborn-notebook‘,
 ‘seaborn-paper‘,
 ‘seaborn-pastel‘,
 ‘seaborn-poster‘,
 ‘seaborn-talk‘,
 ‘seaborn-ticks‘,
 ‘seaborn-white‘,
 ‘seaborn-whitegrid‘,
 ‘tableau-colorblind10‘]
styles = plt.style.available

for style in styles:
    plt.style.use(style) # 设置主题
    plt.figure(figsize=(5,5))
    sinplot()
    plt.title(style)
    plt.show()
技术图片

matplotlib.pyplot设置画布主题

标签:pat   white   ble   imp   ack   title   tle   pre   ali   

原文地址:https://www.cnblogs.com/xxmmqg/p/14437381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!