Topic | Description | Link |
---|---|---|
Lesson | Jupyter Notebook | Link |
Dataset description: Global Mean Temperature Data (1750-2015)
After this lesson, students will be able to:
- Describe the purpose of the autoregressive and moving average components.
- Define hyperparameters p, d, and q.
- Describe AIC.
- Find the right value of p and q using AIC.
- Find the right value of d using the augmented Dickey-Fuller test.
- Complete a manual GridSearch.
- Fit an ARIMA model.
Before this lesson(s), students should already be able to:
- Define time series data.
- Construct autocorrelation and partial autocorrelation plots.
- Describe autocorrelation and partial autocorrelation.
Total Time: 120 mins
For supplemental reading material on this topic, check out the following resources:
- Open-source textbook that's relatively easy to read
- What is second order differencing?
- NIST Documentation on Time Series Analysis
statsmodels
Documentation for ARIMA Modelstatsmodels
Documentation for SARIMAX Model- Wikipedia Article for Augmented Dickey-Fuller Test
- Guidelines for Tuning Parameters
p
,d
,q
- Paper on Finding Parameters of Moving Average Models
- Table for Identifying Which Model and Method of Differencing to Use
- Peter Craigmile's Course on Time Series Analysis