Advanced Time Series Forecasting with Prophet and ARIMA Models

Added:

Advanced Forecasting Intro
Core Model Concepts
Model Evolution Review
VAR Model Fundamentals
VAR Model Implementation
Seasonal ARIMA Explained
SARIMAX Model Workflow
FB Prophet Features
TFT Neural Network
N-BEATS Deep Learning

Advanced Forecasting Intro

0:03
Playing Section
  • 1

    Moves beyond univariate to handle complex, multivariate time series data.

  • 2

    Addresses the need for more accurate predictions, as seen in recent events.

  • 3

    Introduces the session's goal: enhancing forecasting skills with advanced algorithms.

Understanding of core time series components, specifically trends, seasonality, noise, and the concept of stationarity.
Familiarity with exploratory statistical tools for sequential data, such as Autocorrelation Functions (ACF) and Partial Autocorrelation Functions (PACF).
Proficiency in Python programming, particularly using data manipulation libraries like Pandas for handling datetime objects and resampling.
Basic knowledge of classical regression analysis and how model residuals are evaluated.
Deep learning architectures specialized for sequential data, such as Recurrent Neural Networks (RNNs) and Long Short-Term Memory (LSTM) networks.
Utilizing tree-based machine learning algorithms (e.g., XGBoost, LightGBM) for forecasting via lag-feature engineering.
Multivariate time series forecasting methods, such as Vector Autoregression (VAR) to model multiple mutually-dependent time-varying variables.
Advanced evaluation and deployment strategies, including walk-forward validation (backtesting) and building automated pipeline workflows for production.
1.3K views37likes3:11:13@360DigiTMGOriginal Release: 2022-09-24

This lecture covers advanced time series forecasting methods including Vector Auto Regression (VAR), Vector Auto Regression with Moving Average (VARMA), and Vector Auto Regression with Moving Average and Exogenous factors (VARMAX), along with Seasonal ARIMA (SARIMA) and Seasonal ARIMA with Exogenous factors (SARIMAX), demonstrating how these multivariate approaches improve prediction accuracy by accounting for interdependencies between time series and external factors like holidays, compared to univariate models that only consider single variables.