Skip to content

TDL77/python-time-series-handbook

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Time Series Analysis with Python



This is the collection of notebooks for the course Time Series Analysis with Python. For more information and for reading the content of this repository, please refer to the book version.

📑 Content

  1. Introduction to time series analysis
    • Definition of time series data
    • Main applications of time series analysis
    • Statistical vs dynamical models perspective
    • Components of a time series
    • Additive vs multiplicative models
    • Time series decomposition

notebook

  1. Stationarity in time series
    • Stationarity in time series
    • Weak vs strong stationarity
    • Autocorrelation and autocovariance
    • Common stationary and nonstationary time series
    • How to identify stationarity
    • Transformations to achieve stationarity

notebook

  1. Smoothing
    • Smoothing in time series data
    • The mean squared error
    • Simple average, moving average, and weighted moving average
    • Single, double, and triple exponential smoothing

notebook

  1. AR-MA
    • The autocorrelation function
    • The partial autocorrelation function
    • The Auto-Regressive model
    • The Moving-Average model

notebook

  1. ARMA, ARIMA, SARIMA
    • Autoregressive Moving Average (ARMA) models
    • Autoregressive Integrated Moving Average (ARIMA) models
    • SARIMA models (ARIMA model for data with seasonality)
    • Automatic model selection with AutoARIMA
    • Model selection with exploratory data analysis

notebook

  1. Unit root test and Hurst exponent
    • Unit root test
    • Mean Reversion
    • Hurst Exponent
    • Geometric Brownian Motion
    • Applications in quantitative finance

notebook

  1. Kalman filter
    • Introduction to Kalman Filter
    • Model components and assumptions
    • The Kalman Filter algorithm
    • Application to static and dynamic one-dimensional data
    • Application to higher-dimensional data

notebook

  1. Signal transforms and filters
    • Introduction to Fourier Transform and Discrete Fourier Transform, and FFT
    • Fourier Transform of common signals
    • Properties of the Fourier Transform
    • Signal filtering with low-pass, high-pass, band-pass, and bass-stop filters
    • Application of Fourier Transform for time series forecasting

notebook

  1. Prophet
    • Introduction to Prophet for time series forecasting
    • Advanced modelling of trend, seasonality, and holidays
    • The Prophet library in Python

notebook

  1. Neural networks and Reservoir Computing
    • Windowed approaches and Neural Networks for time series forecasting
    • Forecasting with the Multi Layer Perceptron
    • Recurrent Neural Networks: advantages and challenges
    • Reservoir Computing and the Echo State Network
    • Dimensionality reduction with Principal Component Analysis
    • Forecasting electricity consumption with Multi Layer Perceptron and Echo State Network

notebook

  1. Non-linear time series analysis
    • Dynamical systems and nonlinear dynamics
    • Bifurcation diagrams
    • Chaotic systems
    • High-dimensional continuous-time systems
    • Fractal dimensions
    • Phase space reconstruction and Taken's embedding theorem
    • Forecasting nonlinear time series

notebook

  1. Time series classification and clustering
    • Multivariate time series
    • Time series similarity
    • Dynamic Time Warping
    • Time series kernels
    • Time series embedding
    • Classification of time series
    • Clustering of time series
    • Visualization with kernel PCA

notebook

🚀 Getting started with coding

To run the notebooks the recommended steps are the following:

  1. Download and install Miniconda.

  2. Download the env.yml file.

  3. Open the shell and navigate to the location with the yml file you just downloaded.

    • If you are on Windows, open the Miniconda shell.
  4. Install the environment with

    > conda env create -f env.yml
    
  5. Activate your environment:

    > conda activate pytsa
    
  6. Go to the folder with the notebooks

  7. Launch Jupyter Lab with the command

    > jupyter lab
    

🎥 Notebook format and slides

The notebooks are structured as a sequence of slides to be presented using RISE. If you open a notebook you will see the following structure:

The top-right button indicates the type of slide, which is stored in the metadata of the cell. To enable the visualization of the slide type you must first install RISE and then on the top menu select View -> Cell Toolbar -> Slieshow. Also, to split the cells like in the example, you must enable Split Cells Notebook from the nbextensions.

By pressing the Enter\Exit RISE Slideshow button at the top you can enter the slideshow presentation.

See the RISE documentation for more info.

About

Course: Time series analysis with Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%