# Time Series ARIMA Models in R # Copyright 2013 by Ani Katchova # install.packages("tseries") library(tseries) mydata<- read.csv("C:/Econometrics/Data/timeseries_ppi.csv") attach(mydata) # Defining variables Y <- ppi d.Y <- diff(Y) t <- yearqrt # Descriptive statistics and plotting the data summary(Y) summary(d.Y) plot(t,Y) plot(d.Y) # Dickey-Fuller test for variable adf.test(Y, alternative="stationary", k=0) adf.test(Y, alternative="explosive", k=0) summary(lm(dppi ~ lppi, na.action=na.omit)) summary(lm(dppi ~ lppi + trend, na.action=na.omit)) # Augmented Dickey-Fuller test adf.test(Y, alternative="stationary") # DF and ADF tests for differenced variable adf.test(d.Y, k=0) adf.test(d.Y)

# ACF and PACF acf(Y) pacf(Y) acf(d.Y) pacf(d.Y) # ARIMA(1,0,0) or AR(1) arima(Y, order = c(1,0,0)) # ARIMA(2,0,0) or AR(2) arima(Y, order = c(2,0,0)) # ARIMA(0,0,1) or MA(1) arima(Y, order = c(0,0,1)) # ARIMA(1,0,1) or AR(1) MA(1) arima(Y, order = c(1,0,1)) # ARIMA on differenced variable # ARIMA(1,1,0) arima(d.Y, order = c(1,0,0)) # ARIMA(0,1,1) arima(d.Y, order = c(0,0,1)) # ARIMA(1,1,1)

arima(d.Y, order = c(1,0,1)) # ARIMA(1,1,3) arima(d.Y, order = c(1,0,3)) # ARIMA(2,1,3) arima(d.Y, order = c(2,0,3))

# ARIMA(1,0,1) forecasting mydata.arima101 <- arima(Y, order = c(1,0,1)) mydata.pred1 <- predict(mydata.arima101, n.ahead=100) plot (Y) lines(mydata.pred1$pred, col="blue") lines(mydata.pred1$pred+2*mydata.pred1$se, col="red") lines(mydata.pred1$pred-2*mydata.pred1$se, col="red") # ARIMA(1,1,1) forecasting mydata.arima111 <- arima(d.Y, order = c(1,0,1)) mydata.pred1 <- predict(mydata.arima111, n.ahead=100) plot (d.Y) lines(mydata.pred1$pred, col="blue") lines(mydata.pred1$pred+2*mydata.pred1$se, col="red") lines(mydata.pred1$pred-2*mydata.pred1$se, col="red")

> > > > >

# Time Series ARIMA Models in R # Copyright 2013 by Ani Katchova # install.packages("tseries") library(tseries) ‘tseries’ version: 0.10-32 ‘tseries’ is a package for time series analysis and computational finance. See ‘library(help="tseries")’ for details.

> > > > > > > > > > >

mydata<- read.csv("C:/Econometrics/Data/timeseries_ppi.csv") attach(mydata) # Defining variables Y <- ppi d.Y <- diff(Y) t <- yearqrt

# Descriptive statistics and plotting the data summary(Y) Min. 1st Qu. Median Mean 3rd Qu. Max. 25.24 29.66 77.00 64.68 93.27 110.40 > summary(d.Y) Min. 1st Qu. Median Mean 3rd Qu. Max. -3.2100 0.0300 0.3000 0.4643 0.9625 3.0800 > > plot(t,Y) > plot(d.Y) > > # Dickey-Fuller test for variable > adf.test(Y, alternative="stationary", k=0) Augmented Dickey-Fuller Test data: Y Dickey-Fuller = -0.7931, Lag order = 0, p-value = 0.9604 alternative hypothesis: stationary > adf.test(Y, alternative="explosive", k=0) Augmented Dickey-Fuller Test data: Y Dickey-Fuller = -0.7931, Lag order = 0, p-value = 0.03964 alternative hypothesis: explosive > > summary(lm(dppi ~ lppi, na.action=na.omit)) Call: lm(formula = dppi ~ lppi, na.action = na.omit) Residuals: Min 1Q Median -3.6484 -0.4507 -0.1697

3Q 0.5135

Max 2.6168

Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 0.5035691 0.1682689 2.993 0.00319 ** lppi -0.0006095 0.0023653 -0.258 0.79697 ---

Signif. codes:

0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 0.9233 on 166 degrees of freedom (1 observation deleted due to missingness) Multiple R-squared: 0.0003999, Adjusted R-squared: F-statistic: 0.0664 on 1 and 166 DF, p-value: 0.797

-0.005622

> summary(lm(dppi ~ lppi + trend, na.action=na.omit)) Call: lm(formula = dppi ~ lppi + trend, na.action = na.omit) Residuals: Min 1Q Median -3.7271 -0.4264 -0.2088

3Q 0.5155

Max 2.6533

Coefficients:

Estimate Std. Error t value Pr(>|t|) (Intercept) 0.581139 0.197371 2.944 0.0037 ** lppi -0.008389 0.010578 -0.793 0.4289 trend 0.004957 0.006569 0.755 0.4516 --Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 Residual standard error: 0.9245 on 165 degrees of freedom (1 observation deleted due to missingness) Multiple R-squared: 0.003838, Adjusted R-squared: -0.008237 F-statistic: 0.3178 on 2 and 165 DF, p-value: 0.7282 > > # Augmented Dickey-Fuller test > adf.test(Y, alternative="stationary") Augmented Dickey-Fuller Test data: Y Dickey-Fuller = -1.3857, Lag order = 5, p-value = 0.8327 alternative hypothesis: stationary > > # DF and ADF tests for differenced variable > adf.test(d.Y, k=0) Augmented Dickey-Fuller Test data: d.Y Dickey-Fuller = -6.8398, Lag order = 0, p-value = 0.01 alternative hypothesis: stationary Warning message: In adf.test(d.Y, k = 0) : p-value smaller than printed p-value > adf.test(d.Y) Augmented Dickey-Fuller Test data: d.Y Dickey-Fuller = -3.2459, Lag order = 5, p-value = 0.08252 alternative hypothesis: stationary > > > # ACF and PACF > acf(Y) > pacf(Y)

> > > > > >

acf(d.Y) pacf(d.Y) # ARIMA(1,0,0) or AR(1) arima(Y, order = c(1,0,0))

Call: arima(x = Y, order = c(1, 0, 0)) Coefficients: ar1 intercept 0.9996 64.522 s.e. 0.0005 38.002 sigma^2 estimated as 1.058: log likelihood = -248.2, > > # ARIMA(2,0,0) or AR(2) > arima(Y, order = c(2,0,0))

aic = 502.4

Call: arima(x = Y, order = c(2, 0, 0)) Coefficients: ar1 ar2 1.6474 -0.6475 s.e. 0.0003 0.0003

intercept 230.406 NaN

sigma^2 estimated as 0.6061: log likelihood = -198.27, Warning messages: 1: In log(s2) : NaNs produced 2: In sqrt(diag(x$var.coef)) : NaNs produced > > # ARIMA(0,0,1) or MA(1) > arima(Y, order = c(0,0,1))

aic = 404.54

Call: arima(x = Y, order = c(0, 0, 1)) Coefficients: ma1 intercept 1.0000 64.6863 s.e. 0.0182 2.3345 sigma^2 estimated as 231.6: log likelihood = -702.48, > > # ARIMA(1,0,1) or AR(1) MA(1) > arima(Y, order = c(1,0,1))

aic = 1410.96

Call: arima(x = Y, order = c(1, 0, 1)) Coefficients: ar1 ma1 0.9994 0.5337 s.e. 0.0008 0.0537

intercept 64.6936 37.6621

sigma^2 estimated as 0.7233: log likelihood = -216.41, > > # ARIMA on differenced variable > # ARIMA(1,1,0) > arima(d.Y, order = c(1,0,0)) Call:

aic = 440.82

arima(x = d.Y, order = c(1, 0, 0)) Coefficients: ar1 intercept 0.5522 0.4557 s.e. 0.0640 0.1307 sigma^2 estimated as 0.5841: log likelihood = -193.39, > > # ARIMA(0,1,1) > arima(d.Y, order = c(0,0,1))

aic = 392.79

Call: arima(x = d.Y, order = c(0, 0, 1)) Coefficients: ma1 intercept 0.4872 0.4654 s.e. 0.0579 0.0908 sigma^2 estimated as 0.6284: log likelihood = -199.5, > > # ARIMA(1,1,1) > arima(d.Y, order = c(1,0,1))

aic = 404.99

Call: arima(x = d.Y, order = c(1, 0, 1)) Coefficients: ar1 ma1 0.7245 -0.2547 s.e. 0.1152 0.1682

intercept 0.4397 0.1576

sigma^2 estimated as 0.5783: log likelihood = -192.59, > > # ARIMA(1,1,3) > arima(d.Y, order = c(1,0,3))

aic = 393.17

Call: arima(x = d.Y, order = c(1, 0, 3)) Coefficients: ar1 ma1 0.7334 -0.241 s.e. 0.1242 0.142

ma2 -0.1082 0.0970

ma3 0.1217 0.0800

intercept 0.4324 0.1664

sigma^2 estimated as 0.5638: log likelihood = -190.48, > > # ARIMA(2,1,3) > arima(d.Y, order = c(2,0,3))

aic = 392.97

Call: arima(x = d.Y, order = c(2, 0, 3)) Coefficients: ar1 ar2 1.5191 -0.7084 s.e. 0.2253 0.1589

ma1 -1.0502 0.2103

ma2 0.2100 0.1314

ma3 0.3179 0.1036

intercept 0.4405 0.1438

sigma^2 estimated as 0.5474: log likelihood = -188.22, > > > # ARIMA(1,0,1) forecasting > mydata.arima101 <- arima(Y, order = c(1,0,1))

aic = 390.44

> > > > > > > > > > > > >

>

mydata.pred1 <- predict(mydata.arima101, n.ahead=100) plot (Y) lines(mydata.pred1$pred, col="blue") lines(mydata.pred1$pred+2*mydata.pred1$se, col="red") lines(mydata.pred1$pred-2*mydata.pred1$se, col="red") # ARIMA(1,1,1) forecasting mydata.arima111 <- arima(d.Y, order = c(1,0,1)) mydata.pred1 <- predict(mydata.arima111, n.ahead=100) plot (d.Y) lines(mydata.pred1$pred, col="blue") lines(mydata.pred1$pred+2*mydata.pred1$se, col="red") lines(mydata.pred1$pred-2*mydata.pred1$se, col="red")

Time Series ARIMA Models R Program and Output.pdf

Time Series ARIMA Models R Program and Output.pdf. Time Series ARIMA Models R Program and Output.pdf. Open. Extract. Open with. Sign In. Main menu.

59KB Sizes 11 Downloads 263 Views

Recommend Documents

Time Series ARIMA Models R Program and Output.pdf
Page 2 of 11. arima(d.Y, order = c(1,0,1)). # ARIMA(1,1,3). arima(d.Y, order = c(1,0,3)). # ARIMA(2,1,3). arima(d.Y, order = c(2,0,3)). # ARIMA(1,0,1) forecasting. mydata.arima101

Time Series ARIMA Models SAS Program and Output.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Time Series ARIMA Models SAS Program and Output.pdf. Time Series ARIMA Models SAS Program and Output.pdf. Op

Time Series ARIMA Models Stata Program and Output.pdf ...
Set data as time series . tset $time. time variable: t, 1960q2 to 2002q2. delta: 1 quarter. Page 3 of 18. Time Series ARIMA Models Stata Program and Output.pdf.

Time Series ARIMA Models SAS Program and Output.pdf
Retrying... Time Series ARIMA Models SAS Program and Output.pdf. Time Series ARIMA Models SAS Program and Output.pdf. Open. Extract. Open with. Sign In.

Time Series ARIMA Models Example.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Time Series ...

Time Series ARIMA Models.pdf
Autoregressive (AR) and moving average (MA) models correct for violations of this white. noise assumption. -4 -2. 0. 2. white_noise. 0 10 20 30 40 50. _t. Page 4 of 22. Time Series ARIMA Models.pdf. Time Series ARIMA Models.pdf. Open. Extract. Open w

Time Series with State Space Models - R/Finance conference
1 Introduction to state space models and the dlm package. 2 DLM estimation and ... Time Series Analysis by State Space Methods. Oxford University Press, 2001 ...

Time Series with State Space Models - R/Finance conference
Time Series with State Space Models. R/Finance 2012. 2 / 90 ...... http://moderntoolmaking.blogspot.com/2011/11/time-series-cross-validation-2.html. Ability to ...

The Bootstrap for Regression and Time-Series Models
Corresponding to a bootstrap resample χ∗ is a bootstrap replication ...... univariate bootstrap estimation of bias and variance for an arbitrary statistic, theta. It.

pdf-0699\time-series-and-dynamic-models-themes-in-modern ...
... EBOOK : TIME SERIES AND DYNAMIC MODELS (THEMES IN. MODERN ECONOMETRICS) BY CHRISTIAN GOURIEROUX, ALAIN. MONFORT PDF. Page 1 ...

Estimating panel time series models with ...
... xit are correlated with (from the econometrician's perspective) unobserved .... Nation Industrial Development Organisation's Industrial Statistics database ( ...