|
Chapter Contents |
Previous |
Next |
| The ARIMA Procedure |
The airline passenger data, given as Series G in Box and Jenkins (1976), has been used in time series analysis literature as an example of a nonstationary seasonal time series. This example uses PROC ARIMA to fit the "airline model," ARIMA(0,1,1)×(0,1,1)12, to Box and Jenkins' Series G.
The following statements read the data and log transform the series. The PROC GPLOT step plots the series, as shown in Output 7.2.1.
title1 'International Airline Passengers';
title2 '(Box and Jenkins Series-G)';
data seriesg;
input x @@;
xlog = log( x );
date = intnx( 'month', '31dec1948'd, _n_ );
format date monyy.;
datalines;
112 118 132 129 121 135 148 148 136 119 104 118
115 126 141 135 125 149 170 170 158 133 114 140
145 150 178 163 172 178 199 199 184 162 146 166
171 180 193 181 183 218 230 242 209 191 172 194
196 196 236 235 229 243 264 272 237 211 180 201
204 188 235 227 234 264 302 293 259 229 203 229
242 233 267 269 270 315 364 347 312 274 237 278
284 277 317 313 318 374 413 405 355 306 271 306
315 301 356 348 355 422 465 467 404 347 305 336
340 318 362 348 363 435 491 505 404 359 310 337
360 342 406 396 420 472 548 559 463 407 362 405
417 391 419 461 472 535 622 606 508 461 390 432
;
symbol1 i=join v=dot;
proc gplot data=seriesg;
plot x * date = 1 / haxis= '1jan49'd to '1jan61'd by year;
run;
Output 7.2.1: Plot of Data
|
proc arima data=seriesg;
identify var=xlog(1,12) nlag=15;
run;
estimate q=(1)(12) noconstant method=uls;
run;
forecast out=b lead=24 id=date interval=month noprint;
quit;
The printed output from the IDENTIFY statement is shown in Output 7.2.2. The autocorrelation plots shown are for the twice differenced series (1-B)(1-B12)X. Note that the autocorrelation functions have the pattern characteristic of a first-order moving average process combined with a seasonal moving average process with lag 12.
Output 7.2.2: IDENTIFY Statement Output|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data c;
set b;
x = exp( xlog );
forecast = exp( forecast + std*std/2 );
l95 = exp( l95 );
u95 = exp( u95 );
run;
The forecasts and their confidence limits are plotted using the following PROC GPLOT step. The plot is shown in Output 7.2.4.
symbol1 i=none v=star;
symbol2 i=join v=circle;
symbol3 i=join v=none l=3;
proc gplot data=c;
where date >= '1jan58'd;
plot x * date = 1 forecast * date = 2
l95 * date = 3 u95 * date = 3 /
overlay haxis= '1jan58'd to '1jan62'd by year;
run;
Output 7.2.4: Plot of the Forecast for the Original Series
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.