Cross-temporal forecast reconciliation according to the heuristic procedure by
Kourentzes and Athanasopoulos (2019), where the order of application of the
two reconciliation steps (temporal-first-then-cross-sectional, as in the function
tcsrec()
), is inverted. The function
cstrec()
performs cross-sectional reconciliation
(htsrec()
) first, then temporal reconciliation
(thfrec()
), and finally applies the average of the
projection matrices obtained in the second step to the one dimensional
reconciled values obtained in the first step.
cstrec(basef, hts_comb, thf_comb, res, ...)
(n h(k^+m)) matrix of base forecasts to be reconciled, Y; n is the total number of variables, m is the highest time frequency, k^ is the sum of (a subset of) (p-1) factors of m, excluding m, and h is the forecast horizon for the lowest frequency time series. Each row identifies a time series, and the forecasts are ordered as [lowest_freq' ... highest_freq']'.
(n N(k^ + m)) matrix containing the residuals
at all the temporal frequencies ordered as [lowest_freq' ... highest_freq']'
(columns) for each variable (row), needed to estimate the covariance matrix
when hts_comb =
{"wls",
"shr",
"sam"}
and/or
hts_comb =
{"wlsv",
"wlsh",
"acov",
"strar1",
"sar1",
"har1",
"shr",
"sam"}
.
The rows must be in the same order as basef
.
The function returns a list with two elements:
recf
(n h(k^ + m)) reconciled forecasts matrix, Y.
M
Matrix which transforms the uni-dimensional reconciled forecasts of step 1 (projection approach) .
Warning, the two-step heuristic reconciliation allows non negativity constraints only in the first step. This means that it is not guaranteed the non-negativity of the final reconciled values.
Di Fonzo, T., and Girolimetto, D. (2021), Cross-temporal forecast reconciliation: Optimal combination method and heuristic alternatives, International Journal of Forecasting, in press.
Kourentzes, N., Athanasopoulos, G. (2019), Cross-temporal coherent forecasts for Australian tourism, Annals of Tourism Research, 75, 393-409.
Sch<U+00E4>fer, J.L., Opgen-Rhein, R., Zuber, V., Ahdesmaki, M., Duarte Silva, A.P., Strimmer, K. (2017), Package `corpcor', R package version 1.6.9 (April 1, 2017), https://CRAN.R-project.org/package= corpcor.
Sch<U+00E4>fer, J.L., Strimmer, K. (2005), A Shrinkage Approach to Large-Scale Covariance Matrix Estimation and Implications for Functional Genomics, Statistical Applications in Genetics and Molecular Biology, 4, 1.
Stellato, B., Banjac, G., Goulart, P., Bemporad, A., Boyd, S. (2020). OSQP: An Operator Splitting Solver for Quadratic Programs, Mathematical Programming Computation, 12, 4, 637-672.
Stellato, B., Banjac, G., Goulart, P., Boyd, S., Anderson, E. (2019), OSQP: Quadratic Programming Solver using the 'OSQP' Library, R package version 0.6.0.3 (October 10, 2019), https://CRAN.R-project.org/package=osqp.
Other reconciliation procedures:
ctbu()
,
htsrec()
,
iterec()
,
lccrec()
,
octrec()
,
tcsrec()
,
tdrec()
,
thfrec()
# NOT RUN {
data(FoReco_data)
obj <- cstrec(FoReco_data$base, m = 12, C = FoReco_data$C,
hts_comb = "shr", thf_comb = "acov", res = FoReco_data$res)
# }
Run the code above in your browser using DataLab