Computes forecast combination weights according to the bias-corrected eigenvector approach by Hsiao and Wan (2014) and produces forecasts for the test set, if provided.
comb_EIG2(x)
Arguments
x: An object of class foreccomb. Contains training set (actual values + matrix of model forecasts) and optionally a test set.
Returns
Returns an object of class foreccomb_res with the following components: - Method: Returns the used forecast combination method.
Models: Returns the individual input models that were used for the forecast combinations.
Intercept: Returns the intercept (bias correction).
Weights: Returns the combination weights obtained by applying the combination method to the training set.
Fitted: Returns the fitted values of the combination method for the training set.
Accuracy_Train: Returns range of summary measures of the forecast accuracy for the training set.
Forecasts_Test: Returns forecasts produced by the combination method for the test set. Only returned if input included a forecast matrix for the test set.
Accuracy_Test: Returns range of summary measures of the forecast accuracy for the test set. Only returned if input included a forecast matrix and a vector of actual values for the test set.
Input_Data: Returns the data forwarded to the method.
Details
The bias-corrected eigenvector approach builds on the idea that if one or more of the predictive models yield biased predictions, the accuracy of the standard eigenvector approach can be improved by eliminating the bias. The optimization procedure to obtain combination weights coincides with the standard eigenvector approach, except that it is applied to the centered MSPE matrix after extracting the bias (by subtracting the column means of the MSPE).
The combination weights are calculated as:
wEIG2=d~l1w~lw=(1/d~l)∗w~l
where d~j and w~j are defined analogously to dj and wj
in the standard eigenvector approach, with the only difference that they correspond to the spectral decomposition of the centered MSPE matrix rather than the uncentered one.
The combined forecast is then obtained by:
y^t=a+ft′wEIG2y^t=a+(ft)′w
where a=E(yt)−E(ft)′w is the intercept for bias correction. If the actual series and the forecasts are stationary, the expectations can be approximated by the time series means, i.e. the intercept is obtained by subtracting the weighted sum of column means of the MSPE matrix from the mean of the actual series. Forecast combination methods including intercepts therefore usually require stationarity.