原文链接:http://tecdat.cn/?p=21757

时间序列模型根据研究对象是否随机分为确定性模型和随机性模型两大类。

随机时间序列模型即是指仅用它的过去值及随机扰动项所建立起来的模型,建立具体的模型,需解决如下三个问题模型的具体形式、时序变量的滞后期以及随机扰动项的结构。

μ是yt的均值;ψ是系数,决定了时间序列的线性动态结构,也被称为权重,其中ψ0=1;{εt}为高斯白噪声序列,它表示时间序列{yt}在t时刻出现了新的信息,所以εt称为时刻t的innovation(新信息)或shock(扰动)。

单位根测试是平稳性检验的特殊方法。单位根检验是对时间序列建立ARMA模型、ARIMA模型、变量间的协整分析、因果关系检验等的基础。

对于单位根测试,为了说明这些测试的实现,考虑以下系列

> plot(X,type="l")

  • Dickey Fuller(标准)

这里,对于Dickey-Fuller测试的简单版本,我们假设

我们想测试是否(或不是)。我们可以将以前的表示写为

所以我们只需测试线性回归中的回归系数是否为空。这可以通过学生t检验来完成。如果我们考虑前面的模型没有线性漂移,我们必须考虑下面的回归

Call:
lm(formula = z.diff ~ 0 + z.lag.1)Residuals:Min       1Q   Median       3Q      Max
-2.84466 -0.55723 -0.00494  0.63816  2.54352 Coefficients:Estimate Std. Error t value Pr(>|t|)
z.lag.1 -0.005609   0.007319  -0.766    0.444Residual standard error: 0.963 on 238 degrees of freedom
Multiple R-squared:  0.002461,    Adjusted R-squared:  -0.00173
F-statistic: 0.5873 on 1 and 238 DF,  p-value: 0.4442

我们的测试程序将基于学生t检验的值,

> summary(lm(z.diff~0+z.lag.1 ))$coefficients[1,3]
[1] -0.7663308

这正是计算使用的值

ur.df(X,type="none",lags=0)###############################################################
# Augmented Dickey-Fuller Test Unit Root / Cointegration Test #
############################################################### The value of the test statistic is: -0.7663

可以使用临界值(99%、95%、90%)来解释该值

> qnorm(c(.01,.05,.1)/2)
[1] -2.575829 -1.959964 -1.644854

如果统计量超过这些值,那么序列就不是平稳的,因为我们不能拒绝这样的假设。所以我们可以得出结论,有一个单位根。实际上,这些临界值是通过

###############################################
# Augmented Dickey-Fuller Test Unit Root Test #
############################################### Test regression none Call:
lm(formula = z.diff ~ z.lag.1 - 1)Residuals:Min       1Q   Median       3Q      Max
-2.84466 -0.55723 -0.00494  0.63816  2.54352 Coefficients:Estimate Std. Error t value Pr(>|t|)
z.lag.1 -0.005609   0.007319  -0.766    0.444Residual standard error: 0.963 on 238 degrees of freedom
Multiple R-squared:  0.002461,    Adjusted R-squared:  -0.00173
F-statistic: 0.5873 on 1 and 238 DF,  p-value: 0.4442Value of test-statistic is: -0.7663 Critical values for test statistics: 1pct  5pct 10pct
tau1 -2.58 -1.95 -1.62

R有几个包可以用于单位根测试。

Augmented Dickey-Fuller Testdata:  X
Dickey-Fuller = -2.0433, Lag order = 0, p-value = 0.5576
alternative hypothesis: stationary

这里还有一个检验零假设是存在单位根。但是p值是完全不同的。

p.value
[1] 0.4423705
testreg$coefficients[4]
[1] 0.4442389
  • 增广Dickey-Fuller检验

回归中可能有一些滞后现象。例如,我们可以考虑

同样,我们需要检查一个系数是否为零。这可以用学生t检验来做。

> summary(lm(z.diff~0+z.lag.1+z.diff.lag ))Call:
lm(formula = z.diff ~ 0 + z.lag.1 + z.diff.lag)Residuals:Min       1Q   Median       3Q      Max
-2.87492 -0.53977 -0.00688  0.64481  2.47556 Coefficients:Estimate Std. Error t value Pr(>|t|)
z.lag.1    -0.005394   0.007361  -0.733    0.464
z.diff.lag -0.028972   0.065113  -0.445    0.657Residual standard error: 0.9666 on 236 degrees of freedom
Multiple R-squared:  0.003292,    Adjusted R-squared:  -0.005155
F-statistic: 0.3898 on 2 and 236 DF,  p-value: 0.6777coefficients[1,3]
[1] -0.7328138

该值是使用

> df=ur.df(X,type="none",lags=1)###############################################
# Augmented Dickey-Fuller Test Unit Root Test #
############################################### Test regression none Call:
lm(formula = z.diff ~ z.lag.1 - 1 + z.diff.lag)Residuals:Min       1Q   Median       3Q      Max
-2.87492 -0.53977 -0.00688  0.64481  2.47556 Coefficients:Estimate Std. Error t value Pr(>|t|)
z.lag.1    -0.005394   0.007361  -0.733    0.464
z.diff.lag -0.028972   0.065113  -0.445    0.657Residual standard error: 0.9666 on 236 degrees of freedom
Multiple R-squared:  0.003292,    Adjusted R-squared:  -0.005155
F-statistic: 0.3898 on 2 and 236 DF,  p-value: 0.6777Value of test-statistic is: -0.7328 Critical values for test statistics: 1pct  5pct 10pct
tau1 -2.58 -1.95 -1.62

同样,也可以使用其他包:

Augmented Dickey-Fuller Testdata:  X
Dickey-Fuller = -1.9828, Lag order = 1, p-value = 0.5831
alternative hypothesis: stationary

结论是一样的(我们应该拒绝序列是平稳的假设)。

  • 带趋势和漂移的增广Dickey-Fuller检验

到目前为止,我们的模型中还没有包括漂移。但很简单(这将被称为前一过程的扩充版本):我们只需要在回归中包含一个常数,

> summary(lm)Residuals:Min       1Q   Median       3Q      Max
-2.91930 -0.56731 -0.00548  0.62932  2.45178 Coefficients:Estimate Std. Error t value Pr(>|t|)
(Intercept)  0.29175    0.13153   2.218   0.0275 *
z.lag.1     -0.03559    0.01545  -2.304   0.0221 *
z.diff.lag  -0.01976    0.06471  -0.305   0.7603
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1Residual standard error: 0.9586 on 235 degrees of freedom
Multiple R-squared:  0.02313,    Adjusted R-squared:  0.01482
F-statistic: 2.782 on 2 and 235 DF,  p-value: 0.06393

考虑到方差输出的一些分析,这里获得了感兴趣的统计数据,其中该模型与没有集成部分的模型进行了比较,以及漂移,

> summary(lmcoefficients[2,3]
[1] -2.303948
> anova(lm$F[2]
[1] 2.732912

这两个值也是通过

ur.df(X,type="drift",lags=1)###############################################
# Augmented Dickey-Fuller Test Unit Root Test #
############################################### Test regression drift Residuals:Min       1Q   Median       3Q      Max
-2.91930 -0.56731 -0.00548  0.62932  2.45178 Coefficients:Estimate Std. Error t value Pr(>|t|)
(Intercept)  0.29175    0.13153   2.218   0.0275 *
z.lag.1     -0.03559    0.01545  -2.304   0.0221 *
z.diff.lag  -0.01976    0.06471  -0.305   0.7603
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1Residual standard error: 0.9586 on 235 degrees of freedom
Multiple R-squared:  0.02313,    Adjusted R-squared:  0.01482
F-statistic: 2.782 on 2 and 235 DF,  p-value: 0.06393Value of test-statistic is: -2.3039 2.7329 Critical values for test statistics: 1pct  5pct 10pct
tau2 -3.46 -2.88 -2.57
phi1  6.52  4.63  3.81

我们还可以包括一个线性趋势,

> temps=(lags+1):n
lm(z.diff~1+temps+z.lag.1+z.diff.lag )Residuals:Min       1Q   Median       3Q      Max
-2.87727 -0.58802 -0.00175  0.60359  2.47789 Coefficients:Estimate Std. Error t value Pr(>|t|)
(Intercept)  0.3227245  0.1502083   2.149   0.0327 *
temps       -0.0004194  0.0009767  -0.429   0.6680
z.lag.1     -0.0329780  0.0166319  -1.983   0.0486 *
z.diff.lag  -0.0230547  0.0652767  -0.353   0.7243
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1Residual standard error: 0.9603 on 234 degrees of freedom
Multiple R-squared:  0.0239,    Adjusted R-squared:  0.01139
F-statistic:  1.91 on 3 and 234 DF,  p-value: 0.1287> summary(lmcoefficients[3,3]
[1] -1.98282
> anova(lm$F[2]
[1] 2.737086

而R函数返回

ur.df(X,type="trend",lags=1)###############################################
# Augmented Dickey-Fuller Test Unit Root Test #
############################################### Test regression trend Residuals:Min       1Q   Median       3Q      Max
-2.87727 -0.58802 -0.00175  0.60359  2.47789 Coefficients:Estimate Std. Error t value Pr(>|t|)
(Intercept)  0.3227245  0.1502083   2.149   0.0327 *
z.lag.1     -0.0329780  0.0166319  -1.983   0.0486 *
tt          -0.0004194  0.0009767  -0.429   0.6680
z.diff.lag  -0.0230547  0.0652767  -0.353   0.7243
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1Residual standard error: 0.9603 on 234 degrees of freedom
Multiple R-squared:  0.0239,    Adjusted R-squared:  0.01139
F-statistic:  1.91 on 3 and 234 DF,  p-value: 0.1287Value of test-statistic is: -1.9828 1.8771 2.7371 Critical values for test statistics: 1pct  5pct 10pct
tau3 -3.99 -3.43 -3.13
phi2  6.22  4.75  4.07
phi3  8.43  6.49  5.47
  • KPSS 检验

在这里,在KPSS过程中,可以考虑两种模型:漂移模型或线性趋势模型。在这里,零假设是序列是平稳的。
代码是

ur.kpss(X,type="mu")#######################
# KPSS Unit Root Test #
####################### Test is of type: mu with 4 lags. Value of test-statistic is: 0.972 Critical value for a significance level of: 10pct  5pct 2.5pct  1pct
critical values 0.347 0.463  0.574 0.73

在这种情况下,有一种趋势

ur.kpss(X,type="tau")#######################
# KPSS Unit Root Test #
####################### Test is of type: tau with 4 lags. Value of test-statistic is: 0.5057 Critical value for a significance level of: 10pct  5pct 2.5pct  1pct
critical values 0.119 0.146  0.176 0.216

再一次,可以使用另一个包来获得相同的检验(但同样,不同的输出)

KPSS Test for Level Stationaritydata:  X
KPSS Level = 1.1997, Truncation lag parameter = 3, p-value = 0.01> kpss.test(X,"Trend")KPSS Test for Trend Stationaritydata:  X
KPSS Trend = 0.6234, Truncation lag parameter = 3, p-value = 0.01

至少有一致性,因为我们一直拒绝假设。

  • Philipps-Perron 检验

Philipps-Perron检验基于ADF过程。代码

> PP.test(X)Phillips-Perron Unit Root Testdata:  X
Dickey-Fuller = -2.0116, Truncation lag parameter = 4, p-value = 0.571

另一种可能的替代方案是

> pp.test(X)Phillips-Perron Unit Root Testdata:  X
Dickey-Fuller Z(alpha) = -7.7345, Truncation lag parameter = 4, p-value
= 0.6757
alternative hypothesis: stationary
  • 比较

我不会花更多的时间比较不同的代码,在R中,运行这些测试。我们再花点时间快速比较一下这三种方法。让我们生成一些或多或少具有自相关的自回归过程,以及一些随机游走,让我们看看这些检验是如何执行的:

> for(i in 1:(length(AR)+1)
+ for(s in 1:1000){
+ if(i!=1) X=arima.sim
+ M2[s,i]=(pp.testp.value)
+ M1[s,i]=(kpss.testp.value)
+ M3[s,i]=(adf.testp.value)
+ }

这里,我们要计算检验的p值超过5%的次数,

> plot(AR,P[1,],type="l",col="red",ylim=c(0,1)
> lines(AR,P[2,],type="l",col="blue")
> lines(AR,P[3,],type="l",col="green")

我们可以在这里看到Dickey-Fuller测试的表现有多不稳定,因为我们的自回归过程中有50%(至少)被认为是非平稳的。

点击标题查阅往期内容

Python用ARIMA和SARIMA模型预测销量时间序列数据

R语言使用ARIMA模型预测股票收益时间序列

R语言线性回归和时间序列分析北京房价影响因素可视化案例

R语言分布滞后线性和非线性模型(DLMs和DLNMs)分析时间序列数据

R语言广义相加模型 (GAMs)分析预测CO2时间序列数据

Python | ARIMA时间序列模型预测航空公司的乘客数量

R语言中生存分析模型的时间依赖性ROC曲线可视化

R语言ARIMA,SARIMA预测道路交通流量时间序列分析:季节性、周期性

ARIMA模型预测CO2浓度时间序列-python实现

R语言基于递归神经网络RNN的温度时间序列预测

R语言用多元ARMA,GARCH ,EWMA, ETS,随机波动率SV模型对金融时间序列数据建模

R语言神经网络模型预测车辆数量时间序列

在Python中使用LSTM和PyTorch进行时间序列预测

R语言从经济时间序列中用HP滤波器,小波滤波和经验模态分解等提取周期性成分分析

更多内容,请点击左下角“阅读原文”查看报告全文

关注我们

案例精选、技术干货 第一时间与您分享

长按二维码加关注

更多内容,请点击左下角“阅读原文”查看报告全文

R语言时间序列平稳性几种单位根检验(ADF,KPSS,PP)及比较分析相关推荐

  1. R语言:平稳性的检验1

    对序列的平稳性的检验有两种方法:一种是图检验方法,即根据时序图和自相关图所显示的特征做出判断:一种是统计检验方法,即构造检验统计量进行假设检验. 图检验方法是一种操作简便.运用广泛的平稳性判别方法.它 ...

  2. 【R语言实验】基于R语言的时间序列平稳性检验

    一.实验项目名称:基于R语言的时间序列平稳性检验 二.实验目的与要求: 平稳时间序列的概念,平稳性检验的时序图检验方法和自相关图检验方法. 三.实验原理: 时序图和自相关图检验时间序列的平稳性依据: ...

  3. R语言-时间序列实验

    R语言-时间序列实验 数据 实验目的及内容 目的 内容 实验 1.时间序列的平稳性检验 2.时间序列建模分析 3.时间模型序列模型预测 数据 数据选取的是2013年某餐饮的销售额.提取链接如下: 链接 ...

  4. R语言时间序列ARIMA新手教程

    R语言时间序列ARIMA新手教程 首先说一下ARMA回归的底层逻辑,所谓的AR模型和MA模型都是ARMA模型的一种特殊情况,有点类似正方形和长方形都是矩形.ARMA模型的表达式为: p为自回归部分的滞 ...

  5. R语言时间序列代码整理

    R语言时间序列代码整理 时间序列: data<-read.csv('/Users/ji_fanyang/Desktop/test2.csv') myseries<- ts(data[1], ...

  6. 时间序列平稳性分析和白噪声检验

    文章目录 一.时间序列平稳性 1.ADF检验 1.1.ADF检验原理 1.2.ADF的python实现 2.ACF和PACF 二.白噪声检验 原始的负荷时间序列曲线 一.时间序列平稳性 时间序列分析之 ...

  7. R语言EG(Engle-Granger)两步法协整检验、RESET、格兰杰因果检验、VAR模型分析CPI和PPI时间序列关系...

    全文链接:http://tecdat.cn/?p=31108 作为衡量通货膨胀的基本指标,消费者价格指数CPI和生产者价格指数PPI的作用关系与传导机制一直是宏观经济研究的核心问题.(点击文末&quo ...

  8. R语言时间序列(time series)分析实战:简单指数平滑法预测

    R语言时间序列(time series)分析实战:简单指数平滑法预测 目录

  9. R语言时间序列(time series)分析实战:HoltWinters平滑法预测

    R语言时间序列(time series)分析实战:HoltWinters平滑法预测 目录

最新文章

  1. StringTokenizer类的使用
  2. kafka与zookeeper版本对应关系表
  3. RHEL5.7下iptabels防火墙配置(下)
  4. WordPress主题 酱茄模块源码
  5. 做柜员还是程序员_应届生放弃互联网大厂回家乡银行:程序员五万比不上柜员五千...
  6. C# 多线程同步和线程通信
  7. PsExec:一个非常实用的【远程运行】工具
  8. 2013-1-30 六级词汇造句
  9. 信号处理--几种常见的窗函数
  10. 学计算机笔画,学汉字学笔顺电脑版
  11. 阿里云ecs云服务器和域名的购买,绑定及备案教程
  12. LeetCode-347. Top K Frequent Elements [C++][Java]
  13. chrome单击打开标贴在当前窗口的新标签页设置
  14. Velodyne 16线激光雷达-多雷达版本
  15. 运行快应用rpk文件只需要3分钟4个步骤?
  16. pandas 如何删掉第一行_pandas删除指定行详解
  17. AI遮天传 ML-集成学习
  18. 马少平、周枫、王小川、楼天城、唐文斌……清华计算机系与AI的40年
  19. EasyBCD 2.2中文版安装变色龙wowpc.iso详细教程(适用各个版本)
  20. 极米上半年营收20.4亿:同比增21% 百度减持套现8亿

热门文章

  1. 通信算法之二十六:5G讲的这么简单明了
  2. 评价星星三级样式:好、一般、差
  3. bga封装扇出_0.5间距BGA封装,怎么扇出啊
  4. 网规第二版:第8章 网络规划与设计论文学习笔记(含历年真题)(完结)
  5. WT588D使用记录
  6. 啊哈C——学习3.3一起来找茬
  7. 揭秘三端型肖特基二极管检测好坏的方法
  8. SAM9X60 curiosity开发板,U盘拷贝文件到开发板
  9. led显示屏十大品牌
  10. Simulink永磁同步电机控制仿真系列五:使用滑模观测器的反电动势法位置估计