What is a time series?
A sequence of observations recorded at regular time intervals.
What are the two main types of features in time series modeling?
Time-step features and lag features.
What is a time-step feature?
A feature derived directly from the time index (e.g., time dummy).
What is a lag feature?
A feature created by shifting the target series values backward in time.
What is serial dependence?
When future values depend on past observations (modeled with lag features).
What is time dependence?
When values depend on the time index (modeled with time-step features).
What is trend in a time series?
A persistent long-term change in the mean of the series.
How can you visualize trend?
Using a moving average plot with a window larger than seasonal periods.
What is seasonality?
Regular, periodic changes in the mean of a series (e.g., daily, weekly, yearly).
What are seasonal indicators?
Binary features representing seasonal periods (like one-hot encoded days of the week).
What are Fourier features used for?
To model seasonality with many observations using sine and cosine curves.
What is a periodogram?
A plot showing the strength of frequencies in a time series; helps choose Fourier pairs.
What is a cycle in time series?
Patterns of growth/decay not tied to calendar time, often irregular.
How can you visualize serial dependence?
Using a lag plot (current values vs. lagged values).
What is autocorrelation?
Correlation of a time series with its lagged versions.
What is partial autocorrelation?
Correlation of a time series with a lag, accounting for all shorter lags.
What is a hybrid model in forecasting?
Combining two or more models to leverage their complementary strengths.
What is a boosted hybrid?
Using one model to fit residuals of another (e.g., linear regression + XGBoost).
What is a stacked hybrid?
Using predictions of one model as features for another model.
What is forecast origin?
The last time point with available data used to make a forecast.
What is forecast horizon?
The future time period for which forecasts are made.
What is lead time (latency) in forecasting?
The time between forecast origin and forecast horizon.
What is a multioutput forecasting strategy?
A single model that predicts multiple steps ahead simultaneously.
What is the direct forecasting strategy?
Training separate models for each step in the forecast horizon.