ARIMA vs. SARIMA: Differences and When to Use Each for Forecasting

If you are trying to decide between ARIMA and SARIMA, the thing you are really checking for is seasonality. ARIMA is for a series with a trend or short-term dependence, but no predictable repeating cycle. SARIMA is for when you have that same stuff plus a repeating pattern, like monthly demand going up every December or daily traffic acting differently every weekend. Pretty much. The annoying bit is that seasonality can look like random mess until you actually plot the data. Also, a seasonal model sounds more complete, so it is tempting to throw one at everything. I have done that. Forecasting gets annoying pretty fast when the model is more complicated than the data needs it to be. ...

June 19, 2025 · 7 min · Shivam Chhuneja

Why ARIMA and SARIMA Still Matter: A Technical Guide to Time Series Forecasting

Deep Learning Gets the Spotlight, But Time Series Still Solves Real Problems In the machine learning landscape today, deep learning models - transformers, LSTMs, and other neural networks steal the show. They’re impressive, powerful, celebrated and make you feel smart too when you use them. However, when it comes to forecasting business metrics like sales, demand, or inventory, deep learning isn’t always the answer. Traditional time series models, especially ARIMA (AutoRegressive Integrated Moving Average) and its seasonal extension SARIMA, are some of the most effective and interpretable methods for forecasting structured temporal data. ...

June 16, 2025 · 8 min · Shivam Chhuneja