Time Series & Forecasts
📊 How to Read This Chart
Blue line: Observed data
Red line: Model fitted values
Green area: Forecast with confidence interval
Forecast marketing metrics using ARX (AutoRegressive with eXogenous variables). Upload time series data, include external predictors like ad spend, and generate forecasts. This is a simplified introduction to time series - no moving average terms!
ARX (AutoRegressive with eXogenous variables) is a simplified time series model perfect for learning forecasting basics. It combines past values (AR), differencing to remove trends, and external predictors like advertising spend or temperature.
ARX Model: $$ (1 - \phi_1 B - \cdots - \phi_p B^p)(1 - B)^d Y_t = \varepsilon_t + \sum_{j=1}^{k} \beta_j X_{j,t} $$
where \(Y_t\) is the outcome at time \(t\), \(B\) is the backshift operator, \(d\) is the differencing order, \(\phi\) are AR coefficients, and \(\beta_j\) are coefficients for exogenous predictors \(X_j\).
💡 What about MA(q)?
ARX uses only AR(p) and differencing(d). The "MA(q)" moving average component is removed to simplify learning. Once you master ARX, graduate to the ARIMAX tool to learn MA terms!
A series is stationary when its statistical behaviour — especially its mean — doesn't drift over time. Most raw business series (sales, traffic, spend) trend, so their mean keeps climbing; a model fit to them spends all its effort chasing the trend instead of the signal you care about.
Differencing (subtracting each value from the one before it, controlled by d) removes that trend, leaving fluctuations around a constant mean that the AR terms can actually learn from. Here's the same series before and after one round of differencing:
Top: the original series trends upward — non-stationary. Bottom: after differencing (d = 1) it hovers around a flat mean — stationary, and ready for forecasting.
Use ARX when you have a time series outcome (sales, traffic, conversions) influenced by external factors you can measure. Common marketing applications include:
Use presets to auto-load realistic marketing time series data with external predictors already configured.
Upload a CSV with a date/time column, outcome column, and optional exogenous predictor columns.
Drag & Drop CSV file (.csv, .tsv, .txt, .xls, .xlsx)
First row = column headers. Include date, outcome, and predictor columns.