Coder Social home page Coder Social logo

mhicoayala / volume_forecast Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 397 KB

A comparison of time-series forecasting models on a weekday-only data using StatsForecast library.

Jupyter Notebook 100.00%
arima exponential-smoothing forecasting forecasting-algorithm holt-winters python python-3-10 complex-exponential-smoothing statsforecast jupyter-notebook

volume_forecast's Introduction

Seasonal Volume Forecasting: Seasonal ARIMA, Holt-Winter, & Complex Exponential Smoothing

About the data

This dataset is from an unnamed contact center company who wishes to forecast their incoming volume to assist in their workforce planning, and to maximize their productivity. It contains the daily received volume from October 2020 to March 2021, excluding the holidays and weekends. Saturday, Sunday and holiday data is set to 0.

image

From visual inspection, data has little to no trend and with strong seasonality from it having values only on weekdays.

A sample of the dataset is shown below; a total of 175 rows (days) are found in this data.

# Load dataset using Pandas library

df = pd.read_csv('volume_dataset.csv', parse_dates=['date'])
df.head()
df.shape
date calls_received
0 2020-10-02 00:00:00 0
1 2020-10-03 00:00:00 2698
2 2020-10-04 00:00:00 3105
3 2020-10-05 00:00:00 2996
4 2020-10-06 00:00:00 3033

(175, 2)

Essentially, data is cleaned. No duplicates nor date errors are present.


References

volume_forecast's People

Contributors

mhicoayala avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.