Sourcetable supports multiple forecasting methods through StatsModels and scikit-learn. Describe your forecasting goal in plain English and the AI selects the appropriate method.Documentation Index
Fetch the complete documentation index at: https://sourcetable.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
ARIMA / SARIMAX
| Model | Use case |
|---|---|
| ARIMA | Non-seasonal time series with trend |
| SARIMA | Seasonal time series (monthly, quarterly, weekly patterns) |
| SARIMAX | Seasonal time series with external predictors (marketing spend, holidays) |
- Tests for stationarity (ADF test)
- Determines optimal (p, d, q) parameters using AIC/BIC
- Adds seasonal orders when periodicity is detected
- Generates forecasts with confidence intervals
Exponential smoothing
| Method | Use case |
|---|---|
| Simple Exponential Smoothing | No trend, no seasonality |
| Holt’s Linear | Trend, no seasonality |
| Holt-Winters (additive) | Trend + consistent seasonal amplitude |
| Holt-Winters (multiplicative) | Trend + growing seasonal amplitude |
ML-based forecasting
- You have many external predictors
- The relationship is non-linear
- Traditional time series models underperform
Seasonal decomposition
- Trend — long-term direction
- Seasonal — repeating patterns at fixed intervals
- Residual — unexplained variation
Confidence intervals
All forecasts include confidence intervals (default 95%). The AI visualizes:- Historical data as a solid line
- Forecast as a dashed line
- Confidence bands as shaded regions