Time-series Forecasting - Exponential Smoothing

Size: px
Start display at page:

Download "Time-series Forecasting - Exponential Smoothing"

Transcription

1 Time-series Forecasting - Exponential Smoothing Dr. Josif Grabocka ISMLL, University of Hildesheim Business Analytics Business Analytics 1 / 26

2 Motivation Extreme recentivism: The Naive forecast considers only the last value: ŷ T +h T = y T Extreme nostalgia: The Average method equally considers all previous values: ŷ T +h T = 1 T T t=1 y t A middle way is needed: How to capture the influence of previous values while prioritizing recent measurements? Business Analytics 2 / 26

3 Exponential Smoothing An exponentially-weighted average for 0 < α 1: ŷ T +1 T = αy T + α(1 α)y T 1 + α(1 α) 2 y T The weights decrease exponentially for past measurements: Observation α = 0.2 α = 0.4 α = 0.6 α = 0.8 y T y T y T y T y T The recentivism is controlled by α, where T α(1 α) T t 1, α (0, 1] Business Analytics 3 / 26 t=1

4 Example - Oil Production Oil production in Saudi Arabia ( ). Hyndman et al Business Analytics 4 / 26

5 Weighted Average Form Forecast of time T + 1 is a weighted average of observation y T and forecast ŷ T T 1 : ŷ T +1 T = αy T + (1 α)ŷ T T 1 ŷ T T 1 = αy T 1 + (1 α)ŷ T 1 T 2... ŷ 3 2 = αy 2 + (1 α)ŷ 2 1 ŷ 2 1 = αy 1 + (1 α)l 0 Business Analytics 5 / 26

6 Component and Error Correction Forms The only component influencing forecast ŷ t t 1 is the level l t : Forecast Equation Smoothing Equation ŷ t+1 t = l t l t = αy t + (1 α)l t 1 Similarly we can derive the error (e t ) correction form: l t = l t 1 + α(y t l t 1 ) = l t 1 + α(y t ŷ t t 1 ) = l t 1 + αe t Business Analytics 6 / 26

7 Holt s Linear Trend Method Tackle trend in ŷ t+1 h by decomposing out a slope/trend term b t : Forecast Equation ŷ t+h t = l t + hb t Level Equation l t = αy t + (1 α)(l t 1 + b t 1 ) Trend Equation b t = β (l t l t 1 ) + (1 β )b t 1 0 < α 1, 0 < β 1 l t as a waited average of current observation y t and estimation ŷ t t 1 = l t 1 + b t 1 b t as a weighted average of prediction differences l t l t 1 and previous trend b t 1 Business Analytics 7 / 26

8 Holt s Linear Trend Method - Error Correction Rewrite by taking l t and b t on the left side: l t = l t 1 + b t 1 + αe t b t = b t 1 + αβ e t Where the isolated error is: e t = y t (l t 1 + b t 1 ) = y t ŷ t t 1 Set l 0 = y 1 and b 0 = y 2 y 1 when making predictions Business Analytics 8 / 26

9 Exercise Given a series y 1 = 2, y 2 = 3, y 3 = 3, y 4 = 2, predict ŷ 5 4 =? using Holt s Linear Trend with α = 0.5, β = 0.5 In fact, it was later observed that y 5 = 2. l 0 = 2, b 0 = 5 l 1 = 0.5( ) = 0.5, b 1 = 0.5( ) = 3.75 l 2 = 0.5( ) = 3.625, b 2 = 0.5( ) = l 3 = 0.5( ) = , b 3 = 0.5( ) = l 4 = 0.5( ) = , b 4 = 0.5( ) = ŷ 5 4 = = Business Analytics 9 / 26

10 Example - Livestock, sheep in Asia Comparison of different forecasting approaches using non-seasonal exponential smoothing. Hyndman et al Business Analytics 10 / 26

11 Exponential Trend Method Replace an additive model (constant slope) with a multiplicative one (constant growth): Forecast Equation ŷ t+h t = l t bt h Level Equation l t = αy t + (1 α)(l t 1 b t 1 ) Trend Equation b t = β l t l t 1 + (1 β )b t 1 b t represents a multiplicative growth rate in relative terms l t l t 1 Forecasts project a constant growth rate rather than a constant slope (as in the additive model) Business Analytics 11 / 26

12 Exponential Trend Method - Error Correction Rewrite by taking l t and b t on the left side: l t = l t 1 b t 1 + αe t b t = b t 1 + αβ e t l t 1 Where the isolated error is: e t = y t (l t 1 b t 1 ) = y t ŷ t t 1 Set l 0 = y 1 and b 0 = y 2 /y 1 when making predictions Business Analytics 12 / 26

13 Example - Air Passengers (Hyndman et al. 2014) Notice the over-forecast of the linear and exponential trend methods. The damped trend approach addresses the issue... Business Analytics 13 / 26

14 Damped Additive Trend Model Include a damping/prohibitory parameter 0 < φ < 1: Forecast Equation ŷ t+h t = l t + (φ + φ φ h )b t Level Equation l t = αy t + (1 α)(l t 1 + φb t 1 ) Trend Equation b t = β (l t l t 1 ) + (1 β )φb t 1 φ = 1 leads Holt s additive linear trend model Error correction form: l t = l t 1 + φb t 1 + αe t b t = φb t 1 + αβ e t Business Analytics 14 / 26

15 Example - Livestock, sheep in Asia Level l t and trend b t computed from a Livestock, sheep time series. Hyndman et al Business Analytics 15 / 26

16 Damped Multiplicative Trend Model Include a damping/prohibitory parameter 0 < φ < 1 to the exponential trend: Forecast Equation ŷ t+h t = l t b (φ+φ2 + +φ h ) t Level Equation l t = αy t + (1 α)(l t 1 b φ t 1 ) Trend Equation b t = β l t l t 1 + (1 β )b φ t 1 φ = 1 leads to exponential trend model Error correction form: l t = l t 1 b φ t 1 + αe t b t = b φ t 1 + αβ e t l t 1 Business Analytics 16 / 26

17 Example - Livestock, sheep in Asia Hyndman et al Business Analytics 17 / 26

18 Exercise (2) Given a series y 1 = 2, y 2 = 3, y 3 = 3, y 4 = 2, predict ŷ 5 4 =? using: Damped Additive Trend Model with α = 0.5, β = 0.5, φ = 0.5 In fact, it was later observed that y 5 = 2. Solve it at home! Business Analytics 18 / 26

19 Setting parameters How to set α, β, b 0, l 0, φ? Search for combinations that minimize the Sum of Squared Errors: T T SSE = et 2 = (y t ŷ t t 1 ) 2 t=1 t=1 Business Analytics 19 / 26

20 Holt-Winters Additive Seasonal Method Forecast ŷ t+h t = l t + hb t + s t m+h + m Level l t = α(y t s t m ) + (1 α)(l t 1 + b t 1 ) Trend Seasonality b t = β (l t l t 1 ) + (1 β )b t 1 s t = γ(y t l t 1 b t 1 ) + (1 γ)s t m h + m = (h 1) mod m + 1 ensures estimates come from final year l t is the weighted average between seasonally-adjusted observation and non-seasonal forecast b t same as Holt s linear model s t is the weighted average between current seasonal value and the last season s (m periods ago) Business Analytics 20 / 26

21 Holt-Winters Additive Seasonal Method (2) With error correction forms: l t = l t 1 + b t 1 + αe t b t = b t 1 + αβ e t s t = s t m + γe t and residual errors: e t = y t (l t 1 + b t + s t m ) = y t ŷ t t 1 Business Analytics 21 / 26

22 Holt-Winters Multiplicative Seasonal Method Forecast Level Trend Seasonality ŷ t+h t = (l t + hb t )s t m+h + m l t = α y t + (1 α)(l t 1 + b t 1 ) s t m b t = β (l t l t 1 ) + (1 β )b t 1 y t s t = γ + (1 γ)s t m l t 1 + b t 1 Business Analytics 22 / 26

23 Holt-Winters Multiplicative Seasonal Method (2) With an error correction form: l t = l t 1 + b t 1 + α e t s t m b t = b t 1 + αβ e t s t m e t s t = s t m + γ l t 1 + b t 1 With residual errors: e t = y t (l t 1 + b t )s t m Business Analytics 23 / 26

24 Exercise (3) Given a series y 1 = 2, y 2 = 3, y 3 = 3, y 4 = 2, predict ŷ 5 4 =? using: Holt-Winters Additive Seasonal Model with α = 0.5, β = 0.5, γ = 0.5, m = 2 In fact, it was later observed that y 5 = 2. t l b s ŷ Business Analytics 24 / 26

25 Example - International Visitors in Australia Hyndman et al Business Analytics 25 / 26

26 Example - International Visitors in Australia (2) Decomposing l t, b t and s t. Hyndman et al Business Analytics 26 / 26

Exponentially weighted forecasts

Exponentially weighted forecasts FORECASTING USING R Exponentially weighted forecasts Rob Hyndman Author, forecast Simple exponential smoothing Forecasting Notation: ŷ t+h t = y t+h y 1,...,y t point forecast of Forecast Equation: given

More information

Lecture 7: Exponential Smoothing Methods Please read Chapter 4 and Chapter 2 of MWH Book

Lecture 7: Exponential Smoothing Methods Please read Chapter 4 and Chapter 2 of MWH Book Lecture 7: Exponential Smoothing Methods Please read Chapter 4 and Chapter 2 of MWH Book 1 Big Picture 1. In lecture 6, smoothing (averaging) method is used to estimate the trend-cycle (decomposition)

More information

Forecasting with Exponential Smoothing

Forecasting with Exponential Smoothing Springer Series in Statistics Forecasting with Exponential Smoothing The State Space Approach Bearbeitet von Rob Hyndman, Anne B Koehler, J. Keith Ord, Ralph D Snyder 1. Auflage 2008. Taschenbuch. xiii,

More information

Economic Forecasting Lecture 9: Smoothing Methods

Economic Forecasting Lecture 9: Smoothing Methods Economic Forecasting Lecture 9: Smoothing Methods Richard G. Pierse 1 Introduction Smoothing methods are rather different from the model-based methods that we have been looking at up to now in this module.

More information

A time series is called strictly stationary if the joint distribution of every collection (Y t

A time series is called strictly stationary if the joint distribution of every collection (Y t 5 Time series A time series is a set of observations recorded over time. You can think for example at the GDP of a country over the years (or quarters) or the hourly measurements of temperature over a

More information

Modelling and Forecasting Australian Domestic Tourism

Modelling and Forecasting Australian Domestic Tourism Modelling and Forecasting Australian Domestic Tourism George Athanasopoulos & Rob Hyndman Outline Background 1 Background 2 Data 3 Regression models 4 Exponential smoothing via innovations state space

More information

STA 6104 Financial Time Series. Moving Averages and Exponential Smoothing

STA 6104 Financial Time Series. Moving Averages and Exponential Smoothing STA 6104 Financial Time Series Moving Averages and Exponential Smoothing Smoothing Our objective is to predict some future value Y n+k given a past history {Y 1, Y 2,..., Y n } of observations up to time

More information

Multiplicative Winter s Smoothing Method

Multiplicative Winter s Smoothing Method Multiplicative Winter s Smoothing Method LECTURE 6 TIME SERIES FORECASTING METHOD rahmaanisa@apps.ipb.ac.id Review What is the difference between additive and multiplicative seasonal pattern in time series

More information

DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS

DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS ISSN 1440-771X ISBN 0 7326 1091 5 Prediction Intervals for Exponential Smoothing State Space Models Rob J Hyndman, Anne B Koehler, J. Keith Ord and Ralph D Snyder Working Paper 11/2001 2001 DEPARTMENT

More information

Foundations - 1. Time-series Analysis, Forecasting. Temporal Information Retrieval

Foundations - 1. Time-series Analysis, Forecasting. Temporal Information Retrieval Foundations - 1 Time-series Analysis, Forecasting Temporal Information Retrieval Time Series An ordered sequence of values (data points) of variables at equally spaced time intervals Time Series Components

More information

Automatic forecasting with a modified exponential smoothing state space framework

Automatic forecasting with a modified exponential smoothing state space framework ISSN 1440-771X Department of Econometrics and Business Statistics http://www.buseco.monash.edu.au/depts/ebs/pubs/wpapers/ Automatic forecasting with a modified exponential smoothing state space framework

More information

A State Space Framework For Automatic Forecasting Using Exponential Smoothing Methods

A State Space Framework For Automatic Forecasting Using Exponential Smoothing Methods ISSN 1440-771X ISBN 0 7326 1078 8 A State Space Framework For Automatic Forecasting Using Exponential Smoothing s Rob J. Hyndman, Anne B. Koehler, Ralph D. Snyder and Simone Grose Working Paper 9/2000

More information

A new approach to forecasting based on exponential smoothing with independent regressors

A new approach to forecasting based on exponential smoothing with independent regressors ISSN 1440-771X Australia Department of Econometrics and Business Statistics http://wwwbusecomonasheduau/depts/ebs/pubs/wpapers/ A new approach to forecasting based on exponential smoothing with independent

More information

Forecasting using robust exponential smoothing with damped trend and seasonal components

Forecasting using robust exponential smoothing with damped trend and seasonal components Forecasting using robust exponential smoothing with damped trend and seasonal components Crevits R, Croux C. KBI_1714 Forecasting using Robust Exponential Smoothing with Damped Trend and Seasonal Components

More information

Exponential smoothing and non-negative data

Exponential smoothing and non-negative data Exponential smoothing and non-negative data 1 Exponential smoothing and non-negative data Muhammad Akram Rob J Hyndman J Keith Ord Business & Economic Forecasting Unit Exponential smoothing and non-negative

More information

Ch. 12: Workload Forecasting

Ch. 12: Workload Forecasting Ch. 12: Workload Forecasting Kenneth Mitchell School of Computing & Engineering, University of Missouri-Kansas City, Kansas City, MO 64110 Kenneth Mitchell, CS & EE dept., SCE, UMKC p. 1/2 Introduction

More information

Electricity Consumption Forecasting in the Khan Younis Province Using Exponential Smoothing and Box - Jenkins Methods: A Modeling Viewpoint.

Electricity Consumption Forecasting in the Khan Younis Province Using Exponential Smoothing and Box - Jenkins Methods: A Modeling Viewpoint. Electricity Consumption Forecasting in the Khan Younis Province Using Exponential Smoothing and Box - Jenkins Methods: A Modeling Viewpoint. August 26, 2015 The Islamic University of Gaza Faculty of Science

More information

Complex exponential Smoothing. Ivan Svetunkov Nikolaos Kourentzes Robert Fildes

Complex exponential Smoothing. Ivan Svetunkov Nikolaos Kourentzes Robert Fildes Complex exponential Smoothing Ivan Svetunkov Nikolaos Kourentzes Robert Fildes 18 March 2015 Introduction Exponential Smoothing methods performed very well in many competitions: M-Competitions in 1982

More information

AUTO SALES FORECASTING FOR PRODUCTION PLANNING AT FORD

AUTO SALES FORECASTING FOR PRODUCTION PLANNING AT FORD FCAS AUTO SALES FORECASTING FOR PRODUCTION PLANNING AT FORD Group - A10 Group Members: PGID Name of the Member 1. 61710956 Abhishek Gore 2. 61710521 Ajay Ballapale 3. 61710106 Bhushan Goyal 4. 61710397

More information

Applied Forecasting (LECTURENOTES) Prof. Rozenn Dahyot

Applied Forecasting (LECTURENOTES) Prof. Rozenn Dahyot Applied Forecasting (LECTURENOTES) Prof. Rozenn Dahyot SCHOOL OF COMPUTER SCIENCE AND STATISTICS TRINITY COLLEGE DUBLIN IRELAND https://www.scss.tcd.ie/rozenn.dahyot Michaelmas Term 2017 Contents 1 Introduction

More information

António Ascensão Costa

António Ascensão Costa ISSN 1645-0647 Notes on Pragmatic Procedures and Exponential Smoothing 04-1998 António Ascensão Costa Este documento não pode ser reproduzido, sob qualquer forma, sem autorização expressa. NOTES ON PRAGMATIC

More information

DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS

DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS ISSN 1440-771X ISBN 0 7326 1085 0 Unmasking the Theta Method Rob J. Hyndman and Baki Billah Working Paper 5/2001 2001 DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS AUSTRALIA Unmasking the Theta method

More information

Forecasting and the importance of being uncertain

Forecasting and the importance of being uncertain Forecasting and the importance of being uncertain 1 Forecasting and the importance of being uncertain Rob J Hyndman Forecasting and the importance of being uncertain 2 2006 Belz Lecture Maurice H Belz

More information

Forecasting models and methods

Forecasting models and methods Forecasting models and methods Giovanni Righini Università degli Studi di Milano Logistics Forecasting methods Forecasting methods are used to obtain information to support decision processes based on

More information

Transforms and Truncations of Time Series

Transforms and Truncations of Time Series Transforms and Truncations of Time Series Adrian N. Beaumont Submitted in Total Fulfilment of the Requirements of the Degree of PhD Science August 2015 School of Mathematics and Statistics The University

More information

Exponential Smoothing. INSR 260, Spring 2009 Bob Stine

Exponential Smoothing. INSR 260, Spring 2009 Bob Stine Exponential Smoothing INSR 260, Spring 2009 Bob Stine 1 Overview Smoothing Exponential smoothing Model behind exponential smoothing Forecasts and estimates Hidden state model Diagnostic: residual plots

More information

Forecasting. BUS 735: Business Decision Making and Research. exercises. Assess what we have learned

Forecasting. BUS 735: Business Decision Making and Research. exercises. Assess what we have learned Forecasting BUS 735: Business Decision Making and Research 1 1.1 Goals and Agenda Goals and Agenda Learning Objective Learn how to identify regularities in time series data Learn popular univariate time

More information

A Comparison of Time Series Models for Forecasting Outbound Air Travel Demand *

A Comparison of Time Series Models for Forecasting Outbound Air Travel Demand * Journal of Aeronautics, Astronautics and Aviation, Series A, Vol.42, No.2 pp.073-078 (200) 73 A Comparison of Time Series Models for Forecasting Outbound Air Travel Demand * Yu-Wei Chang ** and Meng-Yuan

More information

DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS

DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS ISSN 1440-771X AUSTRALIA DEPARTMENT OF ECONOMETRICS AND BUSINESS STATISTICS Empirical Information Criteria for Time Series Forecasting Model Selection Md B Billah, R.J. Hyndman and A.B. Koehler Working

More information

DEPARTMENT OF QUANTITATIVE METHODS & INFORMATION SYSTEMS

DEPARTMENT OF QUANTITATIVE METHODS & INFORMATION SYSTEMS DEPARTMENT OF QUANTITATIVE METHODS & INFORMATION SYSTEMS Moving Averages and Smoothing Methods ECON 504 Chapter 7 Fall 2013 Dr. Mohammad Zainal 2 This chapter will describe three simple approaches to forecasting

More information

STATS24x7.com 2010 ADI NV, INC.

STATS24x7.com 2010 ADI NV, INC. TIME SERIES SIMPLE EXPONENTIAL SMOOTHING If the mean of y t remains constant over n time, each observation gets equal weight: y ˆ t1 yt 0 et, 0 y n t 1 If the mean of y t changes slowly over time, recent

More information

Applications of Mathematics

Applications of Mathematics Applications of Mathematics Tomáš Cipra Exponential smoothing for irregular data Applications of Mathematics Vol. 5 2006) No. 6 597--604 Persistent URL: http://dml.cz/dmlcz/34655 Terms of use: Institute

More information

Forecasting using exponential smoothing: the past, the present, the future

Forecasting using exponential smoothing: the past, the present, the future Forecasting using exponential smoothing: the past, the present, the future OR60 13th September 2018 Marketing Analytics and Forecasting Introduction Exponential smoothing (ES) is one of the most popular

More information

EXPONENTIAL SMOOTHING MODELING AND FORECASTING FOR INCIDENCE OF TUBERCULOSIS IN INDIA

EXPONENTIAL SMOOTHING MODELING AND FORECASTING FOR INCIDENCE OF TUBERCULOSIS IN INDIA Global and Stochastic analysis Special Issue: 25th International Conference of Forum for Interdisciplinary Mathematics EXPONENTIAL SMOOTHING MODELING AND FORECASTING FOR INCIDENCE OF TUBERCULOSIS IN INDIA

More information

STAT 212 Business Statistics II 1

STAT 212 Business Statistics II 1 STAT 1 Business Statistics II 1 KING FAHD UNIVERSITY OF PETROLEUM & MINERALS DEPARTMENT OF MATHEMATICAL SCIENCES DHAHRAN, SAUDI ARABIA STAT 1: BUSINESS STATISTICS II Semester 091 Final Exam Thursday Feb

More information

THE ROYAL STATISTICAL SOCIETY 2009 EXAMINATIONS SOLUTIONS GRADUATE DIPLOMA MODULAR FORMAT MODULE 3 STOCHASTIC PROCESSES AND TIME SERIES

THE ROYAL STATISTICAL SOCIETY 2009 EXAMINATIONS SOLUTIONS GRADUATE DIPLOMA MODULAR FORMAT MODULE 3 STOCHASTIC PROCESSES AND TIME SERIES THE ROYAL STATISTICAL SOCIETY 9 EXAMINATIONS SOLUTIONS GRADUATE DIPLOMA MODULAR FORMAT MODULE 3 STOCHASTIC PROCESSES AND TIME SERIES The Society provides these solutions to assist candidates preparing

More information

Daily sales forecasting in foodservice: Developing a model for application in an expert system

Daily sales forecasting in foodservice: Developing a model for application in an expert system Daily sales forecasting in foodservice: Developing a model for application in an expert system BPJ 420 Final Report 28 September 2016 H.F. Versluis 11300389 Final Year B.Eng. (Industrial) ii Executive

More information

Time Series Analysis of United States of America Crude Oil and Petroleum Products Importations from Saudi Arabia

Time Series Analysis of United States of America Crude Oil and Petroleum Products Importations from Saudi Arabia International Journal of Applied Science and Technology Vol. 5, No. 5; October 2015 Time Series Analysis of United States of America Crude Oil and Petroleum Products Importations from Saudi Arabia Olayan

More information

The admissible parameter space for exponential smoothing models

The admissible parameter space for exponential smoothing models The admissible parameter space for exponential smoothing models Rob J. Hyndman Department of Econometrics and Business Statistics Monash University, VIC 3800, Australia. Telephone: +613 9905 2358 Fax:

More information

Forecasting of Electric Consumption in a Semiconductor Plant using Time Series Methods

Forecasting of Electric Consumption in a Semiconductor Plant using Time Series Methods Forecasting of Electric Consumption in a Semiconductor Plant using Time Series Methods Prayad B. 1* Somsak S. 2 Spansion Thailand Limited 229 Moo 4, Changwattana Road, Pakkred, Nonthaburi 11120 Nonthaburi,

More information

Decision 411: Class 4

Decision 411: Class 4 Decision 411: Class 4 Non-seasonal averaging & smoothing models Simple moving average (SMA) model Simple exponential smoothing (SES) model Linear exponential smoothing (LES) model Combining seasonal adjustment

More information

Addressing Serial Correlation in Exception Reporting Systems

Addressing Serial Correlation in Exception Reporting Systems Addressing Serial Correlation in Exception Reporting Systems Adam Wagner apw40@medschl.cam.ac.uk Eddie McKenzie Chris Robertson Strathclyde /Cambridge Adam Wagner (Strathclyde/Cambridge) Serial Correlation

More information

YourCabs Forecasting Analytics Project. Team A6 Pratyush Kumar Shridhar Iyer Nirman Sarkar Devarshi Das Ananya Guha

YourCabs Forecasting Analytics Project. Team A6 Pratyush Kumar Shridhar Iyer Nirman Sarkar Devarshi Das Ananya Guha YourCabs Forecasting Analytics Project Team A6 Pratyush Kumar Shridhar Iyer Nirman Sarkar Devarshi Das Ananya Guha Business Assumptions YourCabs acts as an aggregator of radio-cabs from several operators

More information

Comparing the Univariate Modeling Techniques, Box-Jenkins and Artificial Neural Network (ANN) for Measuring of Climate Index

Comparing the Univariate Modeling Techniques, Box-Jenkins and Artificial Neural Network (ANN) for Measuring of Climate Index Applied Mathematical Sciences, Vol. 8, 2014, no. 32, 1557-1568 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.4150 Comparing the Univariate Modeling Techniques, Box-Jenkins and Artificial

More information

Using Temporal Hierarchies to Predict Tourism Demand

Using Temporal Hierarchies to Predict Tourism Demand Using Temporal Hierarchies to Predict Tourism Demand International Symposium on Forecasting 29 th June 2015 Nikolaos Kourentzes Lancaster University George Athanasopoulos Monash University n.kourentzes@lancaster.ac.uk

More information

Journal of Statistical Software

Journal of Statistical Software JSS Journal of Statistical Software July 2008, Volume 27, Issue 3. doi: 10.18637/jss.v000.i00 Automatic Time Series Forecasting: the forecast Package for R Rob J Hyndman Monash University Yeasmin Khandakar

More information

Forecasting. Al Nosedal University of Toronto. March 8, Al Nosedal University of Toronto Forecasting March 8, / 80

Forecasting. Al Nosedal University of Toronto. March 8, Al Nosedal University of Toronto Forecasting March 8, / 80 Forecasting Al Nosedal University of Toronto March 8, 2016 Al Nosedal University of Toronto Forecasting March 8, 2016 1 / 80 Forecasting Methods: An Overview There are many forecasting methods available,

More information

The tourism forecasting competition

The tourism forecasting competition ISSN 1440-771X Department of Econometrics and Business Statistics http://www.buseco.monash.edu.au/depts/ebs/pubs/wpapers/ The tourism forecasting competition George Athanasopoulos, Rob J Hyndman, Haiyan

More information

ECON/FIN 250: Forecasting in Finance and Economics: Section 3.2 Filtering Time Series

ECON/FIN 250: Forecasting in Finance and Economics: Section 3.2 Filtering Time Series ECON/FIN 250: Forecasting in Finance and Economics: Section 3.2 Filtering Time Series Patrick Herb Brandeis University Spring 2016 Patrick Herb (Brandeis University) Filtering Time Series ECON/FIN 250:

More information

Forecasting Automobile Sales using an Ensemble of Methods

Forecasting Automobile Sales using an Ensemble of Methods Forecasting Automobile Sales using an Ensemble of Methods SJOERT FLEURKE Radiocommunications Agency Netherlands Emmasingel 1, 9700 AL, Groningen THE NETHERLANDS sjoert.fleurke@agentschaptelecom.nl http://www.agentschaptelecom.nl

More information

Time Series Forecasting Methods:

Time Series Forecasting Methods: Corso di TRASPORTI E TERRITORIO Time Series Forecasting Methods: EXPONENTIAL SMOOTHING DOCENTI Agostino Nuzzolo (nuzzolo@ing.uniroma2.it) Antonio Comi (comi@ing.uniroma2.it) 1 Classificazione dei metodi

More information

A Dynamic-Trend Exponential Smoothing Model

A Dynamic-Trend Exponential Smoothing Model City University of New York (CUNY) CUNY Academic Works Publications and Research Baruch College Summer 2007 A Dynamic-Trend Exponential Smoothing Model Don Miller Virginia Commonwealth University Dan Williams

More information

Based on the original slides from Levine, et. all, First Edition, Prentice Hall, Inc

Based on the original slides from Levine, et. all, First Edition, Prentice Hall, Inc Based on the original slides from Levine, et. all, First Edition, Prentice Hall, Inc Process of predicting a future event Underlying basis of all business decisions Production Inventory Personnel Facilities

More information

A state space model for exponential smoothing with group seasonality

A state space model for exponential smoothing with group seasonality ISSN 1440-771X Department of Econometrics and Business Statistics http://www.buseco.monash.edu.au/depts/ebs/pubs/wpapers/ A state space model for exponential smoothing with group seasonality Pim Ouwehand,

More information

Product and Inventory Management (35E00300) Forecasting Models Trend analysis

Product and Inventory Management (35E00300) Forecasting Models Trend analysis Product and Inventory Management (35E00300) Forecasting Models Trend analysis Exponential Smoothing Data Storage Shed Sales Period Actual Value(Y t ) Ŷ t-1 α Y t-1 Ŷ t-1 Ŷ t January 10 = 10 0.1 February

More information

Learning Time-Series Shapelets

Learning Time-Series Shapelets Learning Time-Series Shapelets Josif Grabocka, Nicolas Schilling, Martin Wistuba and Lars Schmidt-Thieme Information Systems and Machine Learning Lab (ISMLL) University of Hildesheim, Germany SIGKDD 14,

More information

Aircraft Demand Forecasting

Aircraft Demand Forecasting University of Massachusetts Amherst ScholarWorks@UMass Amherst Masters Theses Dissertations and Theses 2016 Aircraft Demand Forecasting Kayla M. Monahan University of Massachusetts Amherst Follow this

More information

CHAPTER 18. Time Series Analysis and Forecasting

CHAPTER 18. Time Series Analysis and Forecasting CHAPTER 18 Time Series Analysis and Forecasting CONTENTS STATISTICS IN PRACTICE: NEVADA OCCUPATIONAL HEALTH CLINIC 18.1 TIME SERIES PATTERNS Horizontal Pattern Trend Pattern Seasonal Pattern Trend and

More information

Time Series Analysis

Time Series Analysis Time Series Analysis A time series is a sequence of observations made: 1) over a continuous time interval, 2) of successive measurements across that interval, 3) using equal spacing between consecutive

More information

Intermittent state-space model for demand forecasting

Intermittent state-space model for demand forecasting Intermittent state-space model for demand forecasting 19th IIF Workshop 29th June 2016 Lancaster Centre for Forecasting Motivation Croston (1972) proposes a method for intermittent demand forecasting,

More information

QMT 3001 BUSINESS FORECASTING. Exploring Data Patterns & An Introduction to Forecasting Techniques. Aysun KAPUCUGİL-İKİZ, PhD.

QMT 3001 BUSINESS FORECASTING. Exploring Data Patterns & An Introduction to Forecasting Techniques. Aysun KAPUCUGİL-İKİZ, PhD. 1 QMT 3001 BUSINESS FORECASTING Exploring Data Patterns & An Introduction to Forecasting Techniques Aysun KAPUCUGİL-İKİZ, PhD. Forecasting 2 1 3 4 2 5 6 3 Time Series Data Patterns Horizontal (stationary)

More information

Stochastic Modelling Solutions to Exercises on Time Series

Stochastic Modelling Solutions to Exercises on Time Series Stochastic Modelling Solutions to Exercises on Time Series Dr. Iqbal Owadally March 3, 2003 Solutions to Elementary Problems Q1. (i) (1 0.5B)X t = Z t. The characteristic equation 1 0.5z = 0 does not have

More information

Forecasting: Methods and Applications

Forecasting: Methods and Applications Neapolis University HEPHAESTUS Repository School of Economic Sciences and Business http://hephaestus.nup.ac.cy Books 1998 Forecasting: Methods and Applications Makridakis, Spyros John Wiley & Sons, Inc.

More information

Chapter Learning Objectives. Regression Analysis. Correlation. Simple Linear Regression. Chapter 12. Simple Linear Regression

Chapter Learning Objectives. Regression Analysis. Correlation. Simple Linear Regression. Chapter 12. Simple Linear Regression Chapter 12 12-1 North Seattle Community College BUS21 Business Statistics Chapter 12 Learning Objectives In this chapter, you learn:! How to use regression analysis to predict the value of a dependent

More information

USING THE MULTIPLICATIVE DOUBLE SEASONAL HOLT-WINTERS METHOD TO FORECAST SHORT-TERM ELECTRICITY DEMAND

USING THE MULTIPLICATIVE DOUBLE SEASONAL HOLT-WINTERS METHOD TO FORECAST SHORT-TERM ELECTRICITY DEMAND Department of Econometrics Erasmus School of Economics Erasmus University Rotterdam Bachelor Thesis BSc Econometrics & Operations Research July 2, 2017 USING THE MULTIPLICATIVE DOUBLE SEASONAL HOLT-WINTERS

More information

Short-term electricity demand forecasting in the time domain and in the frequency domain

Short-term electricity demand forecasting in the time domain and in the frequency domain Short-term electricity demand forecasting in the time domain and in the frequency domain Abstract This paper compares the forecast accuracy of different models that explicitely accomodate seasonalities

More information

Forecasting Unemployment Rates in the UK and EU

Forecasting Unemployment Rates in the UK and EU Forecasting Unemployment Rates in the UK and EU Team B9 Rajesh Manivannan (61710602) Kartick B Muthiah (61710764) Debayan Das (61710492) Devesh Kumar (61710353) Chirag Bhardwaj (61710812) Sreeharsha Konga

More information

Research Article Forecasting Air Passenger Traffic by Support Vector Machines with Ensemble Empirical Mode Decomposition and Slope-Based Method

Research Article Forecasting Air Passenger Traffic by Support Vector Machines with Ensemble Empirical Mode Decomposition and Slope-Based Method Discrete Dynamics in Nature and Society Volume 2012, Article ID 431512, 12 pages doi:10.1155/2012/431512 Research Article Forecasting Air Passenger Traffic by Support Vector Machines with Ensemble Empirical

More information

Chapter 5: Forecasting

Chapter 5: Forecasting 1 Textbook: pp. 165-202 Chapter 5: Forecasting Every day, managers make decisions without knowing what will happen in the future 2 Learning Objectives After completing this chapter, students will be able

More information

Department of Econometrics and Business Statistics

Department of Econometrics and Business Statistics ISSN 1440-771X Australia Department of Econometrics and Business Statistics http://www.buseco.monash.edu.au/depts/ebs/pubs/wpapers/ Exponential Smoothing: A Prediction Error Decomposition Principle Ralph

More information

Exponential Functions Concept Summary See pages Vocabulary and Concept Check.

Exponential Functions Concept Summary See pages Vocabulary and Concept Check. Vocabulary and Concept Check Change of Base Formula (p. 548) common logarithm (p. 547) exponential decay (p. 524) exponential equation (p. 526) exponential function (p. 524) exponential growth (p. 524)

More information

Operation and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras

Operation and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Operation and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Lecture - 3 Forecasting Linear Models, Regression, Holt s, Seasonality

More information

Exponential smoothing in the telecommunications data

Exponential smoothing in the telecommunications data Available online at www.sciencedirect.com International Journal of Forecasting 24 (2008) 170 174 www.elsevier.com/locate/ijforecast Exponential smoothing in the telecommunications data Everette S. Gardner

More information

Decision 411: Class 4

Decision 411: Class 4 Decision 411: Class 4 Non-seasonal averaging & smoothing models Simple moving average (SMA) model Simple exponential smoothing (SES) model Linear exponential smoothing (LES) model Combining seasonal adjustment

More information

LECTURE 6. Introduction to Econometrics. Hypothesis testing & Goodness of fit

LECTURE 6. Introduction to Econometrics. Hypothesis testing & Goodness of fit LECTURE 6 Introduction to Econometrics Hypothesis testing & Goodness of fit October 25, 2016 1 / 23 ON TODAY S LECTURE We will explain how multiple hypotheses are tested in a regression model We will define

More information

The Derivative of a Function Measuring Rates of Change of a function. Secant line. f(x) f(x 0 ) Average rate of change of with respect to over,

The Derivative of a Function Measuring Rates of Change of a function. Secant line. f(x) f(x 0 ) Average rate of change of with respect to over, The Derivative of a Function Measuring Rates of Change of a function y f(x) f(x 0 ) P Q Secant line x 0 x x Average rate of change of with respect to over, " " " " - Slope of secant line through, and,

More information

Forecasting: principles and practice. Rob J Hyndman 1.1 Introduction to Forecasting

Forecasting: principles and practice. Rob J Hyndman 1.1 Introduction to Forecasting Forecasting: principles and practice Rob J Hyndman 1.1 Introduction to Forecasting 1 Outline 1 Background 2 Case studies 3 The statistical forecasting perspective 4 What can we forecast? 2 Resources Slides

More information

Complex Exponential Smoothing

Complex Exponential Smoothing Complex Exponential Smoothing Ivan Svetunkov and Nikolaos Kourentzes Department of Management Science, Lancaster University August 28, 2015 Abstract Exponential smoothing has been one of the most popular

More information

A stochastic modeling for paddy production in Tamilnadu

A stochastic modeling for paddy production in Tamilnadu 2017; 2(5): 14-21 ISSN: 2456-1452 Maths 2017; 2(5): 14-21 2017 Stats & Maths www.mathsjournal.com Received: 04-07-2017 Accepted: 05-08-2017 M Saranyadevi Assistant Professor (GUEST), Department of Statistics,

More information

BUSI 460 Suggested Answers to Selected Review and Discussion Questions Lesson 7

BUSI 460 Suggested Answers to Selected Review and Discussion Questions Lesson 7 BUSI 460 Suggested Answers to Selected Review and Discussion Questions Lesson 7 1. The definitions follow: (a) Time series: Time series data, also known as a data series, consists of observations on a

More information

FORECASTING. Methods and Applications. Third Edition. Spyros Makridakis. European Institute of Business Administration (INSEAD) Steven C Wheelwright

FORECASTING. Methods and Applications. Third Edition. Spyros Makridakis. European Institute of Business Administration (INSEAD) Steven C Wheelwright FORECASTING Methods and Applications Third Edition Spyros Makridakis European Institute of Business Administration (INSEAD) Steven C Wheelwright Harvard University, Graduate School of Business Administration

More information

Forecasting. Operations Analysis and Improvement Spring

Forecasting. Operations Analysis and Improvement Spring Forecasting Operations Analysis and Improvement 2015 Spring Dr. Tai-Yue Wang Industrial and Information Management Department National Cheng Kung University 1-2 Outline Introduction to Forecasting Subjective

More information

Improved Holt Method for Irregular Time Series

Improved Holt Method for Irregular Time Series WDS'08 Proceedings of Contributed Papers, Part I, 62 67, 2008. ISBN 978-80-7378-065-4 MATFYZPRESS Improved Holt Method for Irregular Time Series T. Hanzák Charles University, Faculty of Mathematics and

More information

The Art of Forecasting

The Art of Forecasting Time Series The Art of Forecasting Learning Objectives Describe what forecasting is Explain time series & its components Smooth a data series Moving average Exponential smoothing Forecast using trend models

More information

Forecasting: Principles and Practice. Rob J Hyndman. 1. Introduction to forecasting OTexts.org/fpp/1/ OTexts.org/fpp/2/3

Forecasting: Principles and Practice. Rob J Hyndman. 1. Introduction to forecasting OTexts.org/fpp/1/ OTexts.org/fpp/2/3 Rob J Hyndman Forecasting: Principles and Practice 1. Introduction to forecasting OTexts.org/fpp/1/ OTexts.org/fpp/2/3 Forecasting: Principles and Practice 1 Resources Slides Exercises Textbook Useful

More information

FORECASTING FLUCTUATIONS OF ASPHALT CEMENT PRICE INDEX IN GEORGIA

FORECASTING FLUCTUATIONS OF ASPHALT CEMENT PRICE INDEX IN GEORGIA FORECASTING FLUCTUATIONS OF ASPHALT CEMENT PRICE INDEX IN GEORGIA Mohammad Ilbeigi, Baabak Ashuri, Ph.D., and Yang Hui Economics of the Sustainable Built Environment (ESBE) Lab, School of Building Construction

More information

Topic 22 Analysis of Variance

Topic 22 Analysis of Variance Topic 22 Analysis of Variance Comparing Multiple Populations 1 / 14 Outline Overview One Way Analysis of Variance Sample Means Sums of Squares The F Statistic Confidence Intervals 2 / 14 Overview Two-sample

More information

On Decomposition and Combining Methods in Time Series Forecasting

On Decomposition and Combining Methods in Time Series Forecasting On Decomposition and Combining Methods in Time Series Forecasting M.Tech Project First Stage Report Submitted in partial fulfillment of the requirements for the degree of Master of Technology by Unmesh

More information

Forecasting in Hierarchical Models

Forecasting in Hierarchical Models Forecasting in Hierarchical Models Lucy Morgan Supervisor: Nikolaos Kourentzes 20 th February 2015 Introduction Forecasting is the process of making statements about events whose actual outcomes (typically)

More information

Forecasting using R. Rob J Hyndman. 2.5 Seasonal ARIMA models. Forecasting using R 1

Forecasting using R. Rob J Hyndman. 2.5 Seasonal ARIMA models. Forecasting using R 1 Forecasting using R Rob J Hyndman 2.5 Seasonal ARIMA models Forecasting using R 1 Outline 1 Backshift notation reviewed 2 Seasonal ARIMA models 3 ARIMA vs ETS 4 Lab session 12 Forecasting using R Backshift

More information

Research Article A Study of Time Series Model for Predicting Jute Yarn Demand: Case Study

Research Article A Study of Time Series Model for Predicting Jute Yarn Demand: Case Study Hindawi Industrial Engineering Volume 2017, Article ID 2061260, 8 pages https://doi.org/10.1155/2017/2061260 Research Article A Study of Time Series Model for Predicting Jute Yarn : Case Study C. L. Karmaker,

More information

Decision 411: Class 9. HW#3 issues

Decision 411: Class 9. HW#3 issues Decision 411: Class 9 Presentation/discussion of HW#3 Introduction to ARIMA models Rules for fitting nonseasonal models Differencing and stationarity Reading the tea leaves : : ACF and PACF plots Unit

More information

Time series forecasting used for real-time anomaly detection on websites

Time series forecasting used for real-time anomaly detection on websites Time series forecasting used for real-time anomaly detection on websites author: Georgios Galvas A thesis presented for the degree of MSc Business Analytics VU supervisor: Evert Haasdijk VU second reader:

More information

Do we need Experts for Time Series Forecasting?

Do we need Experts for Time Series Forecasting? Do we need Experts for Time Series Forecasting? Christiane Lemke and Bogdan Gabrys Bournemouth University - School of Design, Engineering and Computing Poole House, Talbot Campus, Poole, BH12 5BB - United

More information

Tourist Arrivals in Sri Lanka: A Comparative Study of Holt- Winter s versus Box- Jenkin s Modeling Methods

Tourist Arrivals in Sri Lanka: A Comparative Study of Holt- Winter s versus Box- Jenkin s Modeling Methods RESEARCH ARTICLE OUSL Journal, 2018 DOI: http://doi.org/10.4038/ouslj.v13i1.7395 Vol. 13, No. 01 (pp. 65-91) Tourist Arrivals in Sri Lanka: A Comparative Study of Holt- Winter s versus Box- Jenkin s Modeling

More information

STAT 443 Final Exam Review. 1 Basic Definitions. 2 Statistical Tests. L A TEXer: W. Kong

STAT 443 Final Exam Review. 1 Basic Definitions. 2 Statistical Tests. L A TEXer: W. Kong STAT 443 Final Exam Review L A TEXer: W Kong 1 Basic Definitions Definition 11 The time series {X t } with E[X 2 t ] < is said to be weakly stationary if: 1 µ X (t) = E[X t ] is independent of t 2 γ X

More information

Suan Sunandha Rajabhat University

Suan Sunandha Rajabhat University Forecasting Exchange Rate between Thai Baht and the US Dollar Using Time Series Analysis Kunya Bowornchockchai Suan Sunandha Rajabhat University INTRODUCTION The objective of this research is to forecast

More information

Forecasting using R. Rob J Hyndman. 3.2 Dynamic regression. Forecasting using R 1

Forecasting using R. Rob J Hyndman. 3.2 Dynamic regression. Forecasting using R 1 Forecasting using R Rob J Hyndman 3.2 Dynamic regression Forecasting using R 1 Outline 1 Regression with ARIMA errors 2 Stochastic and deterministic trends 3 Periodic seasonality 4 Lab session 14 5 Dynamic

More information

Complex Exponential Smoothing

Complex Exponential Smoothing Complex Exponential Smoothing Ivan Svetunkov Management School Lancaster University A thesis submitted for the degree of Doctor of Philosophy 2016 Acknowledgements It was one of those evenings during our

More information

Week 5 Quantitative Analysis of Financial Markets Modeling and Forecasting Trend

Week 5 Quantitative Analysis of Financial Markets Modeling and Forecasting Trend Week 5 Quantitative Analysis of Financial Markets Modeling and Forecasting Trend Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg : 6828 0364 :

More information