This is an old revision of the document!
Time series analysis
Goal: How does time series analysis differ from other machine learning models?
Prepare for the lab
- Read the Chapter 2. Time series graphics, Chapter 7. Time series regression models and Chapter 9. ARIMA models from Forecasting: principles and practice to get the general idea of core concepts related to time series analysis.
- The textbook contains code in R, so you don't need to pay much attention to it - we'll be doing analogous things in Python during the lab.
Materials
- Instead of a lecture, we go straight to the Q&A session with a short series of questions to “warm up” (based on the textbook). Also, in the hands-on session, the most important content is summarized alongside the practical activities.
- Q&A Session:
- How time series data differ from other data?
- Explain the terms: trend, seasonal, cyclic
- What is the difference between stationary and non-stationary time series data?
- What are the AR (Autoregressive) and MA (Moving Average) models?
- When we develop a machine learning model, we need some input feature matrix (X) and some vector (y) we want to predict. This is a bit tricky when it comes to time series. Which features can we include for this purpose?
- Practice session:
- Today's lab is placed in one Jupyter Notebook: Time series analysis
- Advanced practice session:
- If you want to evaluate more advanced models, go to the optional Advanced section in the notebook.
- Report:
- Send the final version of the notebook (to download it, click in Google Colab:
File > Download > Download .ipynb
). Make sure you have done all required 6 tasks.
Learn more!
- R.J. Hyndman & G. Athanasopoulos, G. – Forecasting: principles and practice (OTexts, 2021) – interesting book, full text online, code in R