fitted.bmgarch object. List containing meta
data and the backcast
. Backcast is a list containing three elements:
- mean
[N, 7, TS]
array of mean backcasts, where N is the timeseries length, and TS is the number of time series. E.g., bc$backcast$mean[3,,"tsA"]
is the mean backcast for the third observation in time series "tsA".
- var
[N, 7, TS]
array of variance backcasts, where N is the timeseries length, and TS is the number of time series. E.g., bc$backcast$var[3,,"tsA"]
is the variance backcast for the third observation in time series "tsA".
- cor
[N, 7, TS(TS - 1)/2]
array of correlation backcasts, where N is the timeseries length, and TS(TS - 1)/2
is the number of correlations. E.g., bc$backcast$cor[3,, "tsB_tsA"]
is the backcast for the correlation between "tsB" and "tsA" on the third observation. Lower triangular correlations are saved.
- samples
List
. If inc_samples is TRUE, then a list of arrays of MCMC samples for means, vars, and cors. Each array is [Iteration, Period, ..., ...].