ksetdekov / ts_walkthrough

Time series analysis tutorial, that will set you go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Full review of major time series analysis tasks

Setup python environment

  • create environment python3 -m venv env

  • activate environment

source env/bin/activate (*nix)

env\Scripts\activate.bat (windows)

  • install all dependencies

pip install -r requirements.txt

Contents

All materials also have solution versions, you can identify those by _solution.ipynb prefixes

ts_walkthrough - main jupyter notebook with all theoretical materials and tasks, you should start here

arima.ipynb - separate jupyter notebook for arima task

supervised.ipynb - separate jupyter notebook for supervised ML task

plotting.py - helper script for plotting utilities (used in notebooks as is, not a task)

dataset.py - helping script for data handling utilities (used in notebooks as is, not a task)

data - contains all series, used in tutorial

test.md - short test on basic time series concepts

About

Time series analysis tutorial, that will set you go


Languages

Language:Jupyter Notebook 92.9%Language:TypeScript 7.0%Language:Python 0.2%