Trend, seasonality, and whether anything actually beats naive — answered in seconds, without writing the boilerplate first. You can build all of this yourself; that's not the point. This is the triage pass before you commit to an approach.
Decompose · Compare methods · Beat naive
The modelling isn't hard. It's the scaffolding you write before you know whether the series is even worth modelling that eats the afternoon.
Load, resample, split, fit, plot — a lot of setup just to answer "is there a trend here at all?"
Beating naive is the first question anyone should ask, and the last thing anyone actually wires up.
You suspect a 12-period cycle, but confirming it means a decomposition detour before the real work starts.
Paste a series and get an immediate read: profile, decomposition, and the whole method library fit and ranked side by side — with in-sample fit, out-of-sample backtests, and the parameters each method landed on. Inspectable, not a black box.
Forecast Lab · Air Passengers
If the triage pass says the uncertainty matters more than the point estimate, define variables, distributions and formulas in a live graph and run up to 10,000 paths — no simulator to write.
Monte Carlo Lab · 5,000 sims · h=36Three steps. No setup, no scripting. Just forecasts.
Instant profiling — N, min, mean, max, σ — before you model anything.
Decompose for trend and seasonality, then compare every method's out-of-sample error against naive.
Take the winning direction back to the notebook, or export the numbers and keep going.
Yes — and this doesn't replace it. It replaces the first hour of scaffolding you write before you know which direction is worth pursuing.
That's the point of the fit table. Every method is scored on held-out data side by side, so a flat baseline winning is a real, visible result.
Out-of-sample metrics, fitted parameters, residual decomposition and interval coverage are all exposed per method.
Save each quick look into a workspace so you're not re-pasting the same series next month. And when someone asks to see it, share a link — they get the interactive forecast with the accuracy metrics attached, instead of a screenshot from your notebook.
Decomposition, a full method sweep and out-of-sample metrics in the browser — before you write a line of code.
Decompose · Compare methods · Beat naive