Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 2.45 KB

README.md

File metadata and controls

54 lines (39 loc) · 2.45 KB

GitHub Twitter @data4sci GitHub top language GitHub repo size GitHub last commit

Graphs For Science Sunday Briefing

Binder

Timeseries for Everyone

Code and slides to accompany the online series of webinars: https://data4sci.com/advanced-timeseries by Data For Science.

Run the code in Binder: Binder

Large scale availability of time varying data originating in financial, economical and social systems has led to a rise in the interest in this class of algorithms. Understanding how to model and describe time series information is a fundamental skill in any data scientists toolkit.

In this lecture, we will introduce you to the libraries that Python provides for working with time series data. We’ll quickly review the ARIMA class of models before diving in detail into the more advance ARCH class of forecasting models. Both real and synthetic datasets will be used to illustrate the different kinds of models and their underlying assumptions.

Slides: https://data4sci.com/landing/advanced-timeseries/

Schedule

1. Pandas for Time Series

  • DataFrames and Series
  • Time Series
  • Subsetting
  • DataFrame Manipulations
  • Merge and Join
  • Timeseries transformations
  • Resampling/fill methods

2. statsmodels for Time Series

  • Statsmodels structure and philosophy
  • Pearson Correlation
  • Correlations of 2 timeseries
  • Autocorrelation
  • Partial Autocorrelation Function

3. ARIMA Models

  • Moving Average Models (MA)
  • Autoregressive Models (AR)
  • Fitting ARIMA models with statsmodels
  • Fitting Seasonal ARIMA models

4. GARCH models

  • Heteroscedasticy
  • Heteroscedastical Models
  • Fitting ARCH Model
  • Generalizations