\( \newcommand{\mathbbm}[1]{\boldsymbol{\mathbf{#1}}} \)

10.6 Examples of application

For the example in this section, we will use the data of Road Casualties in Great Britain 1969–84, the Seatbelts dataset in the datasets package for R, which contains several variables (the description is provided in the documentation for the data and can be accessed via the ?Seatbelts command). The variable of interest, in this case is drivers, and the dataset contains more variables than needed, so we will restrict the data with drivers, kms (distance driven), PetrolPrice, and law – the latter three seem to influence the number of injured/killed drivers in principle:

SeatbeltsData <- Seatbelts[,c("drivers","kms","PetrolPrice","law")]

The dynamics of these variables over time is shown in Figure 10.1.

The time series dynamics of variables from Seatbelts dataset.

Figure 10.1: The time series dynamics of variables from Seatbelts dataset.

Apparently, the drivers variable exhibits seasonality but does not seem to have a trend. The type of seasonality is challenging to determine, but we will assume that it is multiplicative for now. A simple ETS(M,N,M) model applied to the data will produce the following (we will withhold the last 12 observations for the forecast evaluation, Figure 10.2):

adamETSMNMSeat <- adam(SeatbeltsData[,"drivers"], "MNM",
                       h=12, holdout=TRUE)
forecast(adamETSMNMSeat, h=12, interval="prediction") |>
    plot()
The actual values for drivers and a forecast from an ETS(M,N,M) model.

Figure 10.2: The actual values for drivers and a forecast from an ETS(M,N,M) model.

This simple model already does a fine job fitting the data and producing forecasts. However, the forecast is biased and is consistently lower than needed because of the sudden drop in the level of series, which can only be explained by the introduction of the new law in the UK in 1983, making the seatbelts compulsory for drivers. Due to the sudden drop, the smoothing parameter for the level of series is higher than needed, leading to wider intervals and less accurate forecasts. Here is the output of the model:

adamETSMNMSeat
## Time elapsed: 0.09 seconds
## Model estimated using adam() function: ETS(MNM)
## Distribution assumed in the model: Gamma
## Loss function type: likelihood; Loss function value: 1125.509
## Persistence vector g:
##  alpha  gamma 
## 0.4133 0.0000 
## 
## Sample size: 180
## Number of estimated parameters: 15
## Number of degrees of freedom: 165
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 2281.019 2283.945 2328.913 2336.512 
## 
## Forecast errors:
## ME: 117.9; MAE: 117.9; RMSE: 137.596
## sCE: 83.695%; Asymmetry: 100%; sMAE: 6.975%; sMSE: 0.663%
## MASE: 0.684; RMSSE: 0.611; rMAE: 0.504; rRMSE: 0.542

In order to further explore the data we will produce the scatterplots and boxplots between the variables using the spread() function from the greybox package (Figure 10.3):

spread(SeatbeltsData)
The relation between variables from the Seatbelts dataset.

Figure 10.3: The relation between variables from the Seatbelts dataset.

Figure 10.3 shows a negative relation between kms and drivers: the higher the distance driven, the lower the total of car drivers killed or seriously injured. A similar relation is observed between the petrol price and drivers (when the prices are high, people tend to drive less, thus causing fewer incidents). Interestingly, the increase of both variables causes the variance of the response variable to decrease (heteroscedasticity effect). Using a multiplicative error model and including the variables in logarithms, in this case, might address this potential issue. Note that we do not need to take the logarithm of drivers, as we already use the model with multiplicative error. Finally, the legislation of a new law seems to have caused a decrease in the number of causalities. To have a better model in terms of explanatory and predictive power, we should include all three variables. This is how we can do that using adam():

adamETSXMNMSeat <- adam(SeatbeltsData, "MNM", h=12, holdout=TRUE,
                        formula=drivers~log(kms)+log(PetrolPrice)+law)

The parameter formula in general is not compulsory. It can either be substituted by “formula=drivers~.” or dropped completely – in the latter case, the function would fit the model of the first variable in the matrix from everything else. We need the formula in our case because we introduce log-transformations of some explanatory variables.

forecast(adamETSXMNMSeat, h=12, interval="prediction") |>
    plot()
The actual values for drivers and a forecast from an ETSX(M,N,M) model.

Figure 10.4: The actual values for drivers and a forecast from an ETSX(M,N,M) model.

Figure 10.4 shows the forecast from the second model, which is slightly more accurate. More importantly, the prediction interval is narrower than in the simple ETS(M,N,M) because now the model takes the external information into account. Here is the summary of the second model:

adamETSXMNMSeat
## Time elapsed: 0.38 seconds
## Model estimated using adam() function: ETSX(MNM)
## Distribution assumed in the model: Gamma
## Loss function type: likelihood; Loss function value: 1113.992
## Persistence vector g (excluding xreg):
##  alpha  gamma 
## 0.2026 0.0000 
## 
## Sample size: 180
## Number of estimated parameters: 18
## Number of degrees of freedom: 162
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 2263.983 2268.231 2321.456 2332.487 
## 
## Forecast errors:
## ME: 95.905; MAE: 96.929; RMSE: 123.165
## sCE: 68.081%; Asymmetry: 97%; sMAE: 5.734%; sMSE: 0.531%
## MASE: 0.562; RMSSE: 0.547; rMAE: 0.414; rRMSE: 0.485

Note that the smoothing parameter \(\alpha\) has reduced from 0.41 to 0.2. This led to the reduction in error measures. For example, based on RMSE, we can conclude that the model with explanatory variables is more precise than the simple univariate ETS(M,N,M). Still, we could try introducing the update of the parameters for the explanatory variables to see how it works (it might be unnecessary for this data):

adamETSXMNMDSeat <- adam(SeatbeltsData, "MNM", h=12, holdout=TRUE,
                         formula=drivers~log(kms)+log(PetrolPrice)+law,
                         regressors="adapt", maxeval=10000)

Remark. Given the complexity of the estimation task, the default number of iterations needed for the optimiser to find the minimum of the loss function might not be sufficient. This is why I introduced maxeval=10000 in the code above, increasing the number of maximum iterations to 10,000. In order to see how the optimiser worked out, you can add print_level=41 in the code above.

In our specific case, the difference between the ETSX and ETSX{D} models is infinitesimal in terms of the accuracy of final forecasts and prediction intervals. Here is the output of the model:

adamETSXMNMDSeat
## Time elapsed: 1.01 seconds
## Model estimated using adam() function: ETSX(MNM){D}
## Distribution assumed in the model: Gamma
## Loss function type: likelihood; Loss function value: 1113.811
## Persistence vector g (excluding xreg):
##  alpha  gamma 
## 0.1302 0.0000 
## 
## Sample size: 180
## Number of estimated parameters: 21
## Number of degrees of freedom: 159
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 2269.622 2275.470 2336.674 2351.859 
## 
## Forecast errors:
## ME: 97.621; MAE: 98.284; RMSE: 124.667
## sCE: 69.299%; Asymmetry: 97.6%; sMAE: 5.814%; sMSE: 0.544%
## MASE: 0.57; RMSSE: 0.553; rMAE: 0.42; rRMSE: 0.491

We can spot that the error measures of the dynamic model are slightly lower than the ones from the static one (e.g., compare RMSE of models). The information criteria are slightly lower as well. So based on all of this, we should use the dynamic model for forecasting and analytical purposes. In order to see the set of smoothing parameters for the explanatory variables in this model, we can use the command:

round(adamETSXMNMDSeat$persistence,4)
##  alpha  gamma delta1 delta2 delta3 
## 0.1302 0.0000 0.0063 0.0713 0.0000

And see how the states/parameters of the model change over time (Figure 10.5):

plot(adamETSXMNMDSeat, 12, main="")
Dynamic of states of the ETSX(M,N,M){D} model.

Figure 10.5: Dynamic of states of the ETSX(M,N,M){D} model.

As we see in Figure 10.5, the effects of variables change over time. This mainly applies to the PetrolPrice variable, the smoothing parameter for which is the highest among all \(\delta_i\) parameters.

To see the initial effects of the explanatory variables on the number of incidents with drivers, we can look at the parameters for those variables:

adamETSXMNMDSeat$initial$xreg
##         log.kms. log.PetrolPrice.              law 
##      -0.09989906      -0.29395206      -0.23842757

Based on that, we can conclude that the introduction of the law reduced on average the number of incidents by approximately 24%, while the increase of the petrol price by 1% leads on average to a decrease in the number of incidents by 0.3%. Finally, the distance negatively impacts the incidents as well, reducing it on average by 0.1% for each 1% increase in the distance. This is the standard interpretation of parameters, which we can use based on the estimated model (see, for example, discussion in Section 11.3 of Svetunkov, 2022). We will discuss how to do further analysis using ADAM in Chapter 16, introducing the standard errors and confidence intervals for the parameters.

Finally, adam() has some shortcuts when a matrix of variables (not a data frame!) is provided with no formula, assuming that the necessary expansion has already been done. This leads to the decrease in computational time of the function and becomes especially useful when working on large samples of data. Here is an example with ETSX(M,N,N):

# Create matrix for the model
SeatbeltsDataExpanded <-
  ts(model.frame(drivers~log(kms)+log(PetrolPrice)+law,
                 SeatbeltsData),
     start=start(SeatbeltsData), frequency=frequency(SeatbeltsData))
# Fix the names of variables
colnames(SeatbeltsDataExpanded) <-
  make.names(colnames(SeatbeltsDataExpanded))
# Apply the model
adamETSXMNMExpandedSeat <- adam(SeatbeltsDataExpanded, "MNM",
                                lags=12, h=12, holdout=TRUE)

References

• Svetunkov, I., 2022. Statistics for business analytics. https://openforecast.org/sba/ version: 31.10.2022