赞
踩
其中是当前值,是常数项,p是阶数,是自相关系数,是误差。
自回归与移动平均的结合,公式定义:
ARIMA(p,d,q)模型全称为差分自回归移动平均模型(Autoregressive Integrated Moving Average Model,简记ARIMA)
的取值范围为[-1,1]。
AR(p)看PACF,MA(q)看ACF
模型 | ACF | PACF |
AR(p) | 衰减趋于零(几何型或振荡型) | p阶后截尾 |
MA(q) | q阶后截尾 | 衰减趋于零(几何型或振荡型) |
ARMA(p,q) | q阶后衰减趋于零(几何型或振荡型) | p阶后衰减趋于零(几何型或振荡型) |
截尾:落在置信区间内(95%的点都符合该规则)
k为模型参数个数,n为样本数量,L为似然函数;在保证模型精度的情况下尽量使得k值越小越好。
date_range
- import pandas as pd
- import numpy as np
- rng = pd.date_range("2016/07/01",periods=10,freq="D")
- print(rng)
- time = pd.Series(np.random.randn(20),index=pd.date_range("2016/1/1",periods=20))
- print(time)
数据重采样:
- rng = pd.date_range("2011/1/1",periods=90,freq="D")
- ts = pd.Series(np.random.randn(len(rng)),index=rng)
- print(ts)
ts.resample("3D").sum()
升采样插值方法
day3D.resample("D").ffill(2)
day3D.resample("D").interpolate("linear")
- r = ts.rolling(window=10).mean()
- print(r)
- import matplotlib.pyplot as plt
- plt.figure(figsize=(15,5))
- ts.plot(style="r--")
- ts.rolling(window=10).mean().plot(style="b")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。