📈  Forecast Error

Forecast Error#

The difference between a forecast and the realised value.

Important

✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.

What it is#

Forecast error is the gap between what happened and what was predicted — the residual

\[e_t = y_t - \hat{y}_t.\]

A single error means little; forecast quality is summarized by aggregating errors into metrics.

Common metrics#

MAE \(= \frac{1}{N}\sum_t |y_t - \hat{y}_t|\) is robust and interpretable, and the forecast that minimizes it is the median. RMSE \(= \sqrt{\frac{1}{N}\sum_t (y_t - \hat{y}_t)^2}\) penalizes large misses more and is minimized by the mean, but is harder to read. MAPE (mean absolute percentage error) is scale-free but explodes when actuals are near zero; sMAPE is a bounded symmetric variant, still shaky near zero. MASE scales MAE by a naive forecast’s error, making it scale-free and interpretable (\(<1\) beats naive).

Use several#

No single metric tells the whole story — MAPE can look great while bias quietly builds, and MAE can hide a few enormous misses — so report several: an absolute metric (MAE / RMSE), a scaled one (MASE), and a bias measure.


Theme: Signal Processing & Time Series  ·  All terminology



See also

Source article Adapted (context, re-expressed) in our own words from: Forecast Error (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: advanced