The methods ladder
Slides done? Here’s the same idea in a bit more depth — the part worth keeping.
In depth: the lowest rung that works
Forecasting methods form a ladder — simple at the bottom, complex at the top — and the instinct to reach for the top rung is exactly backwards. The skill is to stop at the lowest rung that captures the patterns actually present in your data. Each rung up earns its place only by handling one more thing the rung below ignores; if your data doesn’t contain that thing, the extra complexity buys you nothing and can actively cost you accuracy.
What each rung adds
Naive — this Monday equals last Monday — needs no maths and is brutally hard to beat on stable, strongly seasonal data; it’s also your benchmark. Moving average smooths out the random bounce, at the cost of lagging genuine trends. Exponential smoothing does the same but weights recent periods more heavily, controlled by a single parameter, capturing the level beautifully — though plain smoothing still has no concept of trend or season. Holt-Winters adds exactly those two components, so it can ride a growing baseline and repeat a weekly or yearly shape at once. For most contact-centre series, that’s the highest rung you’ll ever need.
Why complex isn’t the same as accurate
A model with many parameters can fit your history almost perfectly — including its random noise — and then predict the future worse than naive. Fitting the past is not the goal; predicting the future is. The only honest way to choose is out-of-sample: hold back the last few weeks, forecast them with each candidate, and compare against what actually happened. The rung that wins on data the model hasn’t seen is the rung to use — not the one that looks cleverest in a slide. Higher rungs (ARIMA, gradient boosting, neural nets) do exist and can help on large, multi-driver problems, but only once the data is clean and the building blocks are right. A sophisticated model on bad inputs is just confidently wrong, faster.
The principle to remember: start at the bottom, benchmark against naive, add complexity one rung at a time, and prove every step out-of-sample. The best forecaster uses the simplest method that works.
Quick quiz
Five questions. Pick an answer to each, then check your score.
1. What’s the guiding principle of the methods ladder?
Climb only when the data asks. The simplest method that works beats the fanciest one available.
2. Why is the naive method important even if you don’t forecast with it?
Naive is the bar. If a complex method can’t beat “same as last like-period,” it isn’t earning its keep.
3. What does Holt-Winters add over plain exponential smoothing?
Holt-Winters extends smoothing with trend and seasonal components — level, trend, season.
4. A complex model fits your history almost perfectly. What should you suspect?
Fitting the past perfectly often means fitting its noise. Fitting the past isn’t the goal — predicting the future is.
5. What’s the honest way to choose between methods?
Hold back recent data, forecast it, compare to actuals. The out-of-sample winner is the method to use.
See the methods compared on real data in the forecasting methods spreadsheet, or go deeper in The Forecasting Masterclass.