Calculates the median relative absolute error (MdRAE) between the forecast and the eventual outcomes.
Syntax
MdRAE(X, F, M)
- X
- is the eventual outcome time series sample data (a one-dimensional array of cells (e.g., row or column).
- F
- is the forecast time series data (a one-dimensional array of cells (e.g., row or column).
- M
- is the seasonal period in X. For non-seasonal time series, set M = 1 (default), or leave it blank.
Remarks
- The time series is homogeneous or equally spaced.
- The time series X and F must be of identical size
- The time series X or F may include observations with missing values (e.g., #N/A or blank).
- Observations with missing values in Y or F are excluded from the MdRAE calculation.
- The relative absolute error for a given observation is defined as follows: $$r_t=\left | \frac{y_t - f_t }{ y_t - f_t^*} \right |$$ Where:
- $\{y_t\}$ is the actual outcome value at time $t$.
- $\{f_t\}$ is the forecast value at time $t$.
- $\{f_i^*\}$ is the forecast value of the benchmark model at time $t$.
- NumXL uses the naïve forecasting model as a benchmark. The forecast value of the benchmark is defined as follows: $${\displaystyle f_t^*={\left\{\begin{matrix} y_{t-1} \\ y_{t-M} \end{matrix}\right. \begin{matrix} \mathrm{Non-Seasonal}\\ \mathrm{Seasonal} \end{matrix}}}$$
- The median relative absolute error is found by ordering the RAE (relative absolute error) from the smallest to the largest, and using their middle value (or the average of the middle two values if N is an even number) as the median: $${\displaystyle \mathrm{MdRAE}=\mathrm{median}(r_1,r_2,\cdots,r_N )}$$
- MdRAE is more resilient to outliers, unlike MRAE and GMRAE.
- The MdRAE function is available starting with version 1.65 HAMMOCK.
Files Examples
Related Links
References
- R.J. Hyndman, A.B. Koehler, "Another look at measures of forecast accuracy", International Journal of Forecasting, 22 (2006), pp. 679-688.
- James Douglas Hamilton; Time Series Analysis; Princeton University Press; 1st edition(Jan 11, 1994), ISBN: 691042896.
- Tsay, Ruey S.; Analysis of Financial Time Series; John Wiley & SONS; 2nd edition(Aug 30, 2005), ISBN: 0-471-690740.
- D. S.G. Pollock; Handbook of Time Series Analysis, Signal Processing, and Dynamics; Academic Press; Har/Cdr edition(Nov 17, 1999), ISBN: 125609906.
Comments
Article is closed for comments.