pandas 绘图与滑窗
Posted yangjing000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas 绘图与滑窗相关的知识,希望对你有一定的参考价值。
#import nessary library before start
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import os
a=np.random.normal(0,1,100)
b=a.reshape(25,4)
data=pd.DataFrame(b,index=pd.date_range('2018/10/1',periods=25),columns=(['A','B','C','D']))
#data['A']slide_window
fig,axes=plt.subplots(2,2)
sns.lineplot(x=data.index,y=data['A'],data=data,ax=axes[0,0])
data['A'].plot(ax=axes[0,1],figsize=(15,12))
data['A'].rolling(3).var().plot(ax=axes[1,0],label='var')
data['A'].rolling(3).min().plot(ax=axes[1,0],label='min')
data['A'].rolling(3).max().plot(ax=axes[1,0],label='max')
data['A'].rolling(3).sum().plot(ax=axes[1,0],label='sum')
data['A'].rolling(window=10).corr(data['B']).plot(ax=axes[1,1])
以上是关于pandas 绘图与滑窗的主要内容,如果未能解决你的问题,请参考以下文章