EVENT Statement
EVENT variables < / options > ;

The EVENT statement specifies events to be included in the regression portion of the regARIMA model. Multiple EVENT statements can be specified. If a MDLINFOIN= data set is not specified in the PROC X12 statement, then all variables specified in the EVENT statements are applied to all BY groups and all time series that are processed. If a MDLINFOIN= data set is specified, then the EVENT statements apply only if no regression information for the BY group and series is available in the MDLINFOIN= data set. The events specified in the EVENT statements either must be SAS predefined events or must be defined in the data set specified in the INEVENT=SAS-data-set option in the PROC X12 statement. For a summary of SAS predefined events, see the section SAS Predefined Events.

The EVENT statement can also be used to include outlier, level shift, and temporary change regressors that are available as predefined U.S. Census Bureau variables in the X-12-ARIMA program. For example, the following statements specify an additive outlier in January 1970 and a level shift that begins in July 1971:

   proc x12 data=ICMETI seasons=12 start=jan1968;
      event AO01JAN1970D CBLS01JUL1971D;

The following statements specify an additive outlier in the second quarter 1970 and a temporary change that begins in the fourth quarter 1971:

   proc x12 data=ICMETI seasons=4 start='1970q1';
      event AO01APR1970D TC01OCT1971D;

The following options can appear in the EVENT statement:

B=(value <F> ...)

specifies initial or fixed values for the EVENT parameters. For details about the B= option, see B=(value <F> ...) in the section REGRESSION Statement.

USERTYPE=(value)

enables a user-defined variable to be processed in the same manner as a U.S. Census predefined variable. value can be AO, CONSTANT, EASTER, HOLIDAY, LABOR, LOM, LOMSTOCK, LOQ, LPYEAR, LS, RP, SCEASTER, SEASONAL, TC, TD, TDSTOCK, THANKS, or USER. For details about the USERTYPE= option, see the USERTYPE= option in the section REGRESSION Statement.