oes() - occurrence part of iETS model

smooth package has a mechanism of treating the data with zero values. This might be useful for cases of intermittent demand (the demand that happens at random). All the univariate functions in the package have a parameter occurrence that allows handling this type of data. The canonical model, used in smooth, is called “iETS” - intermittent exponential smoothing model. This vignette explains how the iETS model and its occurrence part are implemented in the smooth package.

The basics

The canonical general iETS model (called iETSG) can be summarised as: where yt is the observed values, zt is the demand size, which is a pure multiplicative ETS model on its own, w(⋅) is the measurement function, r(⋅) is the error function, f(⋅) is the transition function and g(⋅) is the persistence function (the subscripts allow separating the functions for different parts of the model). These four functions define how the elements of the vector vt interact with each other. Furthermore, ϵa, t and ϵb, t are the mutually independent error terms that follow unknown distribution, ot is the binary occurrence variable (1 - demand is non-zero, 0 - no demand in the period t) which is distributed according to Bernoulli with probability pt. μa, t and μb, t are the conditional expectations for the unobservable variables at and bt. Any ETS model can be used for at and bt, and the transformation of them into the probability pt depends on the type of the error. The general formula for the multiplicative error is: while for the additive error it is: This is because both μa, t and μb, t need to be positive, and the additive error models support the real plane. The canonical iETS model assumes that the pure multiplicative model is used for the both at and bt. This type of model is positively defined for any values of error, trend and seasonality, which is essential for the values of at and bt and their expectations. If a combination of additive and multiplicative error models is used, then the additive part is exponentiated prior to the usage of the formulae for the calculation of the probability.

An example of an iETS model is the basic local-level model iETS(M,N,N)G(M,N,N)(M,N,N): where la, t and lb, t are the levels for each of the shape parameters and αa and αb are the smoothing parameters and the error terms 1 + ϵa, t and 1 + ϵb, t are positive and have means of one. We do not make any other distributional assumptions concerning the error terms. More advanced models can be constructing by specifying the ETS models for each part and / or adding explanatory variables.

In the notation of the model iETS(M,N,N)G(M,N,N)(M,N,N), the first brackets describe the ETS model for the demand sizes, the underscore letter points out at the specific subtype of model (see below), the second brackets describe the ETS model, underlying the variable at and the last ones stand for the model for the bt. If only one variable is needed (either at or bt), then the redundant brackets are dropped, so that the notation simplifies, for example, to: iETS(M,N,N)O(M,N,N). If the same type of model is used for both demand sizes and demand occurrence, then the second brackets can be dropped as well, simplifying the view to: iETS(M,N,N)G. Furthermore, the notation without any brackets, such as iETSG stands for a general class of a specific subtype of iETS model (so any error / trend / seasonality). Also, given that iETSG is the most general model of all iETS models, the “G” can be dropped, when the properties are applicable to all subtypes. Finally, the “oETS” notation is used when the occurrence part of the model is discussed explicitly, skipping the demand sizes.

The concentrated likelihood function for the iETS model is: where Y is the vector of all the in-sample observations, θ is the vector of parameters to estimate (initial values and smoothing parameters), T is the number of all observations, T0 is the number of zero observations, $\hat{\sigma_\epsilon}^2 = \frac{1}{T} \sum_{o_t=1} \log^2 \left(1 + \epsilon_t \right)$ is the scale parameter of the one-step-ahead forecast error for the demand sizes and t is the estimated probability of a non-zero demand at time t. This likelihood is used for the estimation of all the special cases of the iETSG model.

Depending on the restrictions on at and bt, there can be several iETS models:

  1. iETSF: μa, t = const, μb, t = const - the model with the fixed probability of occurrence;
  2. iETSO: μb, t = 1 - the “odds ratio” model, based on the logistic transform of the ot variable;
  3. iETSI: μa, t = 1 - the “inverse odds ratio” model, based on the inverse logistic transform of the ot variable;
  4. iETSD: μa, t + μb, t = 1, μa, t ≤ 1 - the direct probability model, where the pt is calculated directly from the occurrence variable ot;
  5. iETSG: No restrictions - the model based on the evolution of both μa, t and μb, t.

Depending on the type of the model, there are different mechanisms of the model construction, error calculation, update of the states and the generation of forecasts.

In this vignette we will use ETS(M,N,N) model as a base for the different parts of the models. Although, this is a simplification, it allows better understanding the basics of the different types of iETS model, without the loss of generality.

We will use an artificial data in order to see how the functions work:

y <- ts(c(rpois(20,0.25),rpois(20,0.5),rpois(20,1),rpois(20,2),rpois(20,3),rpois(20,5)))

All the models, discussed in this vignette, are implemented in the functions oes() and oesg(). The only missing element in all of this at the moment is the model selection mechanism for the demand occurrence part. So neither oes() nor oesg() currently support “ZZZ” ETS models.

iETSF

In case of the fixed at and bt, the iETSG model reduces to:

The conditional h-steps ahead mean of the demand occurrence probability is calculated as:

The estimate of the probability p is calculated based on the maximisation of the following concentrated log-likelihood function: where T0 is the number of zero observations and T1 is the number of non-zero observations in the data. The number of estimated parameters in this case is equal to kz + 1, where kz is the number of parameters for the demand sizes part, and 1 is for the estimation of the probability p. Maximising this likelihood deems the analytical solution for the p: where T1 is the number of non-zero observations and T is the number of all the available observations.

The occurrence part of the model oETSF is constructed using oes() function:

oETSFModel1 <- oes(y, occurrence="fixed", h=10, holdout=TRUE)
oETSFModel1
## Occurrence state space model estimated: Fixed probability
## Underlying ETS model: oETS[F](MNN)
## Vector of initials:
##  level 
## 0.6545 
## 
## Error standard deviation: 1.0897
## Sample size: 110
## Number of estimated parameters: 1
## Number of degrees of freedom: 109
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 143.8092 143.8462 146.5097 146.5967
plot(oETSFModel1)

The occurrence part of the model is supported by adam() function. For example, here’s how the iETS(M,M,N)F can be constructed:

adam(y, "MMN", occurrence="fixed", h=10, holdout=TRUE, silent=FALSE)
## Time elapsed: 0.03 seconds
## Model estimated using adam() function: iETS(MMN)[F]
## With optimal initialisation
## Occurrence model type: Fixed probability
## Distribution assumed in the model: Mixture of Bernoulli and Gamma
## Loss function type: likelihood; Loss function value: 133.5382
## Persistence vector g:
##  alpha   beta 
## 0.0038 0.0032 
## 
## Sample size: 110
## Number of estimated parameters: 6
## Number of degrees of freedom: 104
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 420.8856 421.4625 437.0885 433.7439 
## 
## Forecast errors:
## Asymmetry: 87.543%; sMSE: 195.212%; rRMSE: 1.181; sPIS: -5632.164%; sCE: 1007.268%

iETSO

The odds-ratio iETS uses only one model for the occurrence part, for the μa, t variable (setting μb, t = 1), which simplifies the iETSG model. For example, for the iETSO(M,N,N):

In the estimation of the model, the initial level is set to the transformed mean probability of occurrence $l_{a,0}=\frac{\bar{p}}{1-\bar{p}}$ for multiplicative error model and la, 0 = log la, 0 for the additive one, where $\bar{p}=\frac{1}{T} \sum_{t=1}^T o_t$, the initial trend is equal to 0 in case of the additive and 1 in case of the multiplicative types. In cases of seasonal models, the regression with dummy variables is fitted, and its parameters are then used for the initials of the seasonal indices after the transformations similar to the level ones.

The construction of the model is done via the following set of equations (example with oETSO(M,N,N)): where t is the estimate of μa, t.

Given that the model is estimated using the likelihood (2), it has kz + ka parameters to estimate, where kz includes all the initial values, the smoothing parameters and the scale of the error of the demand sizes part of the model, and ka includes only initial values and the smoothing parameters of the model for the demand occurrence. In case of iETSO(M,N,N) this number is equal to 5.

The occurrence part of the model iETSO is constructed using the very same oes() function, but also allows specifying the ETS model to use. For example, here’s the ETS(M,M,N) model:

oETSOModel <- oes(y, model="MMN", occurrence="o", h=10, holdout=TRUE)
oETSOModel
## Occurrence state space model estimated: Odds ratio
## Underlying ETS model: oETS[O](MMN)
## Smoothing parameters:
##  level  trend 
## 0.0032 0.0032 
## Vector of initials:
##  level  trend 
## 0.7741 0.9421 
## 
## Error standard deviation: 1.4477
## Sample size: 110
## Number of estimated parameters: 4
## Number of degrees of freedom: 106
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 106.4444 106.8253 117.2463 118.1416
plot(oETSOModel)

And here’s the full iETS(M,M,N)O model:

adam(y, "MMN", occurrence="o", oesmodel="MMN", h=10, holdout=TRUE, silent=FALSE)
## Time elapsed: 0.07 seconds
## Model estimated using adam() function: iETS(MMN)[O]
## With optimal initialisation
## Occurrence model type: Odds ratio
## Distribution assumed in the model: Mixture of Bernoulli and Gamma
## Loss function type: likelihood; Loss function value: 133.5382
## Persistence vector g:
##  alpha   beta 
## 0.0038 0.0032 
## 
## Sample size: 110
## Number of estimated parameters: 9
## Number of degrees of freedom: 101
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 383.5207 384.0977 407.8251 390.3791 
## 
## Forecast errors:
## Asymmetry: 38.354%; sMSE: 103.033%; rRMSE: 0.858; sPIS: -1857.67%; sCE: 291.42%

This should give the same results as before, meaning that we ask explicitly for the adam() function to use the earlier estimated model:

adam(y, "MMN", occurrence=oETSOModel, h=10, holdout=TRUE, silent=FALSE)

This gives an additional flexibility, because the construction can be done in two steps, with a more refined model for the occurrence part (e.g. including explanatory variables).

iETSI

Similarly to the odds-ratio iETS, inverse-odds-ratio model uses only one model for the occurrence part, but for the μb, t variable instead of μa, t (now μa, t = 1). Here is an example of iETSI(M,N,N):

This model resembles the logistic regression, where the probability is obtained from an underlying regression model of xtA. In the estimation of the model, the initial level is set to the transformed mean probability of occurrence $l_{b,0}=\frac{1-\bar{p}}{\bar{p}}$ for multiplicative error model and lb, 0 = log lb, 0 for the additive one, where $\bar{p}=\frac{1}{T} \sum_{t=1}^T o_t$, the initial trend is equal to 0 in case of the additive and 1 in case of the multiplicative types. The seasonality is treated similar to the iETSO model, but using the inverse-odds transformation.

The construction of the model is done via the set of equations similar to the ones for the iETSO model: where t is the estimate of μb, t.

So the model iETSI is like a mirror reflection of the model iETSO. However, it produces different forecasts, because it focuses on the probability of non-occurrence, rather than the probability of occurrence. Interestingly enough, the probability of occurrence pt can also be estimated if 1 + bt in the denominator is set to be equal to the demand intervals (between the demand occurrences). The model (6) underlies Croston’s method in this case.

Once again oes() function is used in the construction of the model:

oETSIModel <- oes(y, model="MMN", occurrence="i", h=10, holdout=TRUE)
oETSIModel
## Occurrence state space model estimated: Inverse odds ratio
## Underlying ETS model: oETS[I](MMN)
## Smoothing parameters:
## level trend 
## 0.043 0.043 
## Vector of initials:
##  level  trend 
## 1.4562 1.0206 
## 
## Error standard deviation: 1.3992
## Sample size: 110
## Number of estimated parameters: 4
## Number of degrees of freedom: 106
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 145.5932 145.9741 156.3951 157.2904
plot(oETSIModel)

And here’s the full iETS(M,M,N)O model:

adam(y, "MMN", occurrence="i", oesmodel="MMN", h=10, holdout=TRUE, silent=FALSE)
## Time elapsed: 0.07 seconds
## Model estimated using adam() function: iETS(MMN)
## With optimal initialisation
## Occurrence model type: Inverse odds ratio
## Distribution assumed in the model: Mixture of Bernoulli and Gamma
## Loss function type: likelihood; Loss function value: 133.5382
## Persistence vector g:
##  alpha   beta 
## 0.0038 0.0032 
## 
## Sample size: 110
## Number of estimated parameters: 9
## Number of degrees of freedom: 101
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 422.6696 423.2465 446.9739 429.5279 
## 
## Forecast errors:
## Asymmetry: 40.195%; sMSE: 104.132%; rRMSE: 0.863; sPIS: -1981.421%; sCE: 308.39%

Once again, an earlier estimated model can be used in the univariate forecasting functions:

adam(y, "MMN", occurrence=oETSIModel, h=10, holdout=TRUE, silent=FALSE)

iETSD

This model appears, when a specific restriction is imposed: The pure multiplicative iETSG(M,N,N) model is then transformed into iETSD(M,N,N): An option with the additive model in this case has a different, more complicated form:

The estimation of the multiplicative error model is done using the following set of equations: where and κ is a very small number (for example, κ = 10−10), needed only in order to make the model estimable. The estimate of the error term in case of the additive model is much simpler and does not need any specific tricks to work:

The initials of the iETSD model are calculated directly from the data without any additional transformations

Here’s an example of the application of the model to the same artificial data:

oETSDModel <- oes(y, model="MMN", occurrence="d", h=10, holdout=TRUE)
oETSDModel
## Occurrence state space model estimated: Direct probability
## Underlying ETS model: oETS[D](MMN)
## Smoothing parameters:
## level trend 
## 3e-04 3e-04 
## Vector of initials:
##  level  trend 
## 0.2935 1.0141 
## 
## Error standard deviation: 0.8666
## Sample size: 110
## Number of estimated parameters: 4
## Number of degrees of freedom: 106
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 110.5776 110.9585 121.3795 122.2748
plot(oETSDModel)

The usage of the model in case of univariate forecasting functions is the same as in the cases of other occurrence models, discussed above:

adam(y, "MMN", occurrence=oETSDModel, h=10, holdout=TRUE, silent=FALSE)
## Time elapsed: 0.03 seconds
## Model estimated using adam() function: iETS(MMN)[D]
## With optimal initialisation
## Occurrence model type: Direct
## Distribution assumed in the model: Mixture of Bernoulli and Gamma
## Loss function type: likelihood; Loss function value: 133.5382
## Persistence vector g:
##  alpha   beta 
## 0.0038 0.0032 
## 
## Sample size: 110
## Number of estimated parameters: 5
## Number of degrees of freedom: 105
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 379.6540 380.2309 393.1564 394.5123 
## 
## Forecast errors:
## Asymmetry: 37.794%; sMSE: 102.773%; rRMSE: 0.857; sPIS: -1831.754%; sCE: 287.117%

iETSG

This model has already been discussed above and was presented in (1). The estimation of iETS(M,N,N)G model is done via the following set of equations: The initialisation of the parameters of the iETSG model is done separately for the variables at and bt, based on the principles, described above for the iETSO and iETSI.

There is a separate function for this model, called oesg(). It has twice more parameters than oes(), because it allows fine tuning of the models for the variables at and bt. This gives an additional flexibility. For example, here is how we can use ETS(M,N,N) for the at and ETS(A,A,N) for the bt, resulting in oETSG(M,N,N)(A,A,N):

oETSGModel1 <- oesg(y, modelA="MNN", modelB="AAN", h=10, holdout=TRUE)
oETSGModel1
## Occurrence state space model estimated: General
## Underlying ETS model: oETS[G](MNN)(AAN)
## 
## Sample size: 110
## Number of estimated parameters: 6
## Number of degrees of freedom: 104
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 113.3044 114.1199 129.5072 131.4239
plot(oETSGModel1)

The oes() function accepts occurrence="g" and in this case calls for oesg() with the same types of ETS models for both parts:

oETSGModel2 <- oes(y, model="MNN", occurrence="g", h=10, holdout=TRUE)
oETSGModel2
## Occurrence state space model estimated: General
## Underlying ETS model: oETS[G](MNN)(MNN)
## 
## Sample size: 110
## Number of estimated parameters: 4
## Number of degrees of freedom: 106
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 118.6964 119.0773 129.4983 130.3936
plot(oETSGModel2)

Finally, the more flexible way to construct iETS model would be to do it in two steps: either using oesg() or oes() and then using the es() with the provided model in occurrence variable. But a simpler option is available as well:

es(y, "MMN", occurrence="g", oesmodel="MMN", h=10, holdout=TRUE, silent=FALSE)
## Time elapsed: 0.12 seconds
## Model estimated using es() function: iETS(MMN)[G]
## With optimal initialisation
## Occurrence model type: General
## Distribution assumed in the model: Mixture of Bernoulli and Normal
## Loss function type: likelihood; Loss function value: 140.5465
## Persistence vector g:
##  alpha   beta 
## 0.0391 0.0000 
## 
## Sample size: 110
## Number of estimated parameters: 13
## Number of degrees of freedom: 97
## Information criteria:
##      AIC     AICc      BIC     BICc 
## 430.2105 430.7874 465.3168 429.0688 
## 
## Forecast errors:
## Asymmetry: 85.094%; sMSE: 355.639%; rRMSE: 1.594; sPIS: -4625.083%; sCE: 1301.999%

iETSA

Finally, there is an occurrence type selection mechanism. It tries out all the iETS subtypes of models, discussed above and selects the one that has the lowest information criterion (i.e. AIC). This subtype is called iETSA (automatic), although it does not represent any specific model. Here’s an example:

oETSAModel <- oes(y, model="MNN", occurrence="a", h=10, holdout=TRUE)
oETSAModel
## Occurrence state space model estimated: Direct probability
## Underlying ETS model: oETS[D](MNN)
## Smoothing parameters:
##  level 
## 0.0962 
## Vector of initials:
##  level 
## 0.3708 
## 
## Error standard deviation: 1.1223
## Sample size: 110
## Number of estimated parameters: 2
## Number of degrees of freedom: 108
## Information criteria: 
##      AIC     AICc      BIC     BICc 
## 114.0491 114.1613 119.4501 119.7136
plot(oETSAModel)

The main restriction of the iETS models at the moment (smooth v.2.5.0) is that there is no model selection between the ETS models for the occurrence part. This needs to be done manually. Hopefully, this feature will appear in the next release of the package.

References