首页 > 学院 > 开发设计 > 正文

ARMA时序分析

2019-11-11 05:23:10
字体:
来源:转载
供稿:网友

Time Series Analysis

AR

自回归模型,过去的观察值和现在的干扰值的联系组合预测 Xt=c+∑i=1pφiXt−i+εt⋅

MA

滑动平均模型, 过去的感染治和现在的干扰值的线性组合预测

Xt=μ+εt+∑t=1qθiεt−i

ARMA

ARMA(Autoregressive–moving-average model)

Wiki Xt=c+εt+∑i=1pφiXt−i+∑t=1qθiεt−i⋅

c is a constant

ε is white noise

μ is the expectation of Xt

φ and θ are the parameters

ARIMA分析步骤

ARIMA(p,d,q) ,非平稳序列经过k阶差分后变成平稳序列运用ARMA模型

绘制时序图看看数据长什么样,猜测是平稳还是非平稳

ADF(Augmented Dickey-Fuller unit root test)单位根平稳检验

p<a : 非平稳序列,尝试进行K步差分回到步骤2继续进行平稳检验

随机序列(白噪声)检验

方法:Q统计量、LB统计量

p<a : 白噪声序列,停止分析

绘制ACF(Autocorrelation)自相关图,自相关系数ρk具有k阶截尾性则是平稳序列

AR(p)模型具有拖尾性,MA(q)具有q阶截尾性

PACF(Partial Autocorrelation)偏自相关图,

AR(p)模型具有p阶截尾性,MA(q)有拖尾性

BIC信息量最小选择p,q

p, q 阶数一般不超过length/10

模型检验和参数估计

ARIMA模型预测

拖尾:始终有非零取值,不会在k大于某个常数后就恒等于零(或在0附近随机波动)

截尾:在大于某个常数k后快速趋于0为k阶截尾

Python

statsmodels

Time Series analysis

ARIMA

import statsmodels.api as smimport pandas as pddf = pd.DataFrame(data)#dataframex = #LOAD YOUR DATAindex = pd.Index(sm.tsa.datetools.dates_from_range('1959Q1', '2009Q3'))#ordates = sm.tsa.datetools.dates_from_range('1980m1', length=nobs)df = pd.DataFrame(X,colomns=['x'],index=index)#plotdf.plot(df)#ACFsm.tsa.acf(df)sm.graphics.tsa.plot_acf(df)#PACFsm.tsa.pacf(df)sm.graphics.tsa.plot_pacf(df)#ADFsm.tsa.adfuller(df.x) #df.loc[:,'x'] | df.iloc[:,0]#diff差分pd.diff()#diagnostic白噪声检验, 返回stats和psm.stats.diagnostic.acorr_ljungbox(df, lags=1)#model#from statsmodels.tsa.arima_model import ARIMA #ARMAmodel = sm.tsa.ARIMA(df, order=(p,d,q))model = sm.tsa.ARMA()arma_res = model.fit(trend='nc', disp=-1)#BICmodel.bic#模型报告model.summary2()model.summary()model.tail()#拟合结果model.PRedict()#预测图fig, ax = plt.subplots(figsize=(10,8))fig = arma_res.plot_predict(start='1999m6', end='2001m5', ax=ax)legend = ax.legend(loc='upper left')#预测接下来5个数model.forecast(5)
上一篇:2.6

下一篇:codevs 2806_红与黑_bfs

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表