Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 1.06 KB

File metadata and controls

30 lines (25 loc) · 1.06 KB

Holt-Winters Forecasting Challenge

Overview

This project demonstrates the application of the Holt-Winters (Triple Exponential Smoothing) model for time series forecasting. The project includes:

  • Decomposition of time series into trend, seasonal, and residual components.
  • Visualization of monthly and quarterly seasonality.
  • Analysis using ACF and PACF plots.
  • Model evaluation with metrics like MAE, RMSE, and MAPE.

Dataset

  • File: airmiles.csv
  • Description: Contains monthly air passenger miles data.
  • Frequency: Monthly data.

Features

  • Seasonal decomposition with seasonal_decompose.
  • Visualization of trends and seasonal patterns.
  • Implementation of the Holt-Winters method for forecasting.
  • Model evaluation using multiple error metrics.

Getting Started

Prerequisites

  • Python 3.8 or higher
  • Libraries: matplotlib, pandas, statsmodels, scikit-learn

Installation

  1. Clone the repository:
    git clone https://github.com/AdhamKhouly/holt-winters-forecasting-challenge.git
    cd holt-winters-forecasting-challenge