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

Size: px
Start display at page:

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

Transcription

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

2 Time Series An ordered sequence of values (data points) of variables at equally spaced time intervals

3 Time Series Components

4 Forecasting Forecasting using time-series a classical task to predict the future values based on past observations Heavily used in many domains for forecasting: Stock prices Market adoption Weather conditions Sales of articles Environmental carbon footprint

5 Forecasting Given a series of observations {yt} predict forecast the observation at T+h Given that observations have been made until time t

6 Forecasting Given a series of observations {yt} predict forecast the observation at T+h ŷ t+h t = y t Given that observations have been made until time t

7 Forecasting Given a series of observations {yt} predict forecast the observation at T+h forecast for time t+h ŷ t+h t = y t Given that observations have been made until time t

8 Forecasting Given a series of observations {yt} predict forecast the observation at T+h forecast for time t+h ŷ t+h t = y t Given that observations have been made until time t observed value at t

9 Forecasting What is the forecast for the next time point?

10 Forecasting What is the forecast for the next time point? Simple Average Moving Average Linear Regression Weighted Average Idea : More weights to recent data

11 Simple Exponential Smoothing ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, Forecast for time t+1 given that t values have been observed Exponentially decreasing weights

12 Simple Exponential Smoothing smoothing parameter in [0,1] ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, Forecast for time t+1 given that t values have been observed Exponentially decreasing weights

13 Simple Exponential Smoothing smoothing parameter in [0,1] ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, Forecast for time t+1 given that t values have been observed Exponentially decreasing weights

14 SES: Component Form ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, weighted average form ŷ t+1 t = y t +(1 )ŷ t t 1 Component Form Interpretation: SES is the linear combination of last observed value and last forecast value

15 SES: Component Form ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, weighted average form forecast for time t+1 ŷ t+1 t = y t +(1 )ŷ t t 1 Component Form Interpretation: SES is the linear combination of last observed value and last forecast value

16 SES: Component Form ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, weighted average form forecast for time t+1 forecast for time t ŷ t+1 t = y t +(1 )ŷ t t 1 Component Form Interpretation: SES is the linear combination of last observed value and last forecast value

17 Simple Exponential Smoothing ŷ t+1 t = y t +(1 )ŷ t t 1 `t = y t +(1 )`t 1 component form `t 1 =ŷ t t 1

18 Simple Exponential Smoothing ŷ t+1 t = y t +(1 )ŷ t t 1 `t = y t +(1 )`t 1 component form `t 1 =ŷ t t 1 is the level (or the smoothed value) of the series at time t

19 Simple Exponential Smoothing ŷ t+1 t = y t +(1 )ŷ t t 1 `t = y t +(1 )`t 1 component form `t 1 =ŷ t t 1 is the level (or the smoothed value) of the series at time t `t = `t 1 + (y t `t 1 ) = `t 1 + e t error correction form

20 Simple Exponential Smoothing ŷ t+1 t = y t +(1 )ŷ t t 1 `t = y t +(1 )`t 1 component form `t 1 =ŷ t t 1 is the level (or the smoothed value) of the series at time t `t = `t 1 + (y t `t 1 ) = `t 1 + e t error correction form Interpretation: SES is sum of last observed value and smoothed error from the last measurement

21 Simple Exponential Smoothing ŷ t+1 t = y t + (1 )y t 1 + (1 ) 2 y t 2 +, Weighted Average form `t = y t +(1 )`t 1 component form `t = `t 1 + (y t `t 1 ) error correction form SES gives us the forecast for level

22 Simple Exponential Smoothing in action Query vol. for hannover since no prior info. exists `t = y t +(1 )`t 1 component form

23 Simple Exponential Smoothing in action Query vol. for hannover since no prior info. exists `t = y t +(1 )`t 1 component form

24 Choice of Weights To estimate the smoothing parameter, forecasts are computed for equal to.1,.2,.3,,.9 and the sum of squared forecast error is computed for each The smallest Mean Square Error (MSE) is chosen for use in producing the future forecasts. 1 n nx e t =ŷ t y t (ŷ t y t ) 2 error t=1

25 Goodness of Forecast Root Mean Squared Error (RMSE) : v u t 1 n nx e 2 t t=1 Mean Absolute Error (MAE): 1 n nx t=1 e t Mean Absolute Percentage Error (MAPE): 100% n nx t=1 e t y t

26 Holt s Model Double Exponential Smoothing upward trend query volume SES responds slow to trend data time `t = y t +(1 )`t 1 simple exponential smoothing Holt s model explicitly models Trend alongwith Level

27 Holt s Model Double Exponential Smoothing `t = y t +(1 )(`t 1 + b t 1 ) Level Equation b t = (`t `t 1 )+(1 Trend Equation )b t 1 Adds a growth factor (or trend factor) to the smoothing equation as a way of adjusting for the trend.

28 Holt s Model Double Exponential Smoothing `t = y t +(1 )(`t 1 + b t 1 ) Level Equation b t = (`t `t 1 )+(1 Trend Equation )b t 1 Adds a growth factor (or trend factor) to the smoothing equation as a way of adjusting for the trend. ŷ t+h t = `t + hb t Forecast Equation

29 Choice of Weights To weights and can be selected subjectively or by minimizing a measure of forecast error such as RMSE Large weights result in more rapid changes in the component. Small weights result in less rapid changes.

30 Holt-Winters Model Triple Exponential Smoothing Winter s exponential smoothing model is the second extension of the basic Exponential smoothing model. It is used for data that exhibit both trend and seasonality. It is a three parameter model that is an extension of Holt s method. An additional equation adjusts the model for the seasonal component.

31 Holt-Winters Model Triple Exponential Smoothing s t = (y t `t 1 b t 1 )+(1 )s t m,

32 Holt-Winters Model Triple Exponential Smoothing s t = (y t `t 1 b t 1 )+(1 )s t m, Seasonality Equation b t = (`t `t 1 )+(1 Trend Equation `t = (y t s t m )+(1 )(`t 1 + b t 1 ) Level Equation )b t 1 ŷ t+1 t = `t + hb t + s t m+h + m

33 Which smoothing model to use?

34 Which smoothing model to use?

35 Summary Forecasting of time-series and their applications in IR applications Components of a Time series - Level, Trend and Seasonality Exponential Smoothing Methods vs Averaging Methods Level oriented Methods - Simple Exponential Smoothing Adding Trend - Double Exponential Smoothing Adding Seasonality - Triple Exponential Smoothing

36 References Forecasting: principles and practice. (Chapter 7) Introduction to Time Series and Forecasting. %20Series%20and%20Forecasting.pdf

37 Projects Each project has a mentor who you should coordinate with Mentor provides you a concrete task definition and data Each mentor tracks your progress and guides you Drop an to the mentor to fix an appointment Bitbucket vs SVN..Vote next week

38 Projects Temporal and Phrase-based Indexing - Avishek Temporal Retrieval Models - Jaspreet Temporal Query Enrichments - Avishek Crawling for Temporal Collections - Gerhard Temporal Extraction - Helge

Forecasting Module 2. Learning Objectives. Trended Data. By Sue B. Schou Phone:

Forecasting Module 2. Learning Objectives. Trended Data. By Sue B. Schou Phone: Forecasting Module 2 By Sue B. Schou Phone: 8-282-408 Email: schosue@isu.edu Learning Objectives Make forecast models using trend analysis in Minitab Make forecast models using Holt s exponential smoothing

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

STAT 115: Introductory Methods for Time Series Analysis and Forecasting. Concepts and Techniques

STAT 115: Introductory Methods for Time Series Analysis and Forecasting. Concepts and Techniques STAT 115: Introductory Methods for Time Series Analysis and Forecasting Concepts and Techniques School of Statistics University of the Philippines Diliman 1 FORECASTING Forecasting is an activity that

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

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

Chapter 13: Forecasting

Chapter 13: Forecasting Chapter 13: Forecasting Assistant Prof. Abed Schokry Operations and Productions Management First Semester 2013-2014 Chapter 13: Learning Outcomes You should be able to: List the elements of a good forecast

More information

CP:

CP: Adeng Pustikaningsih, M.Si. Dosen Jurusan Pendidikan Akuntansi Fakultas Ekonomi Universitas Negeri Yogyakarta CP: 08 222 180 1695 Email : adengpustikaningsih@uny.ac.id Operations Management Forecasting

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

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

Operations Management

Operations Management 3-1 Forecasting Operations Management William J. Stevenson 8 th edition 3-2 Forecasting CHAPTER 3 Forecasting McGraw-Hill/Irwin Operations Management, Eighth Edition, by William J. Stevenson Copyright

More information

FORECASTING AND MODEL SELECTION

FORECASTING AND MODEL SELECTION FORECASTING AND MODEL SELECTION Anurag Prasad Department of Mathematics and Statistics Indian Institute of Technology Kanpur, India REACH Symposium, March 15-18, 2008 1 Forecasting and Model Selection

More information

Lesson 2: Analysis of time series

Lesson 2: Analysis of time series Lesson 2: Analysis of time series Time series Main aims of time series analysis choosing right model statistical testing forecast driving and optimalisation Problems in analysis of time series time problems

More information

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Forecasting demand 02/06/03 page 1 of 34

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Forecasting demand 02/06/03 page 1 of 34 demand -5-4 -3-2 -1 0 1 2 3 Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa Forecasting demand 02/06/03 page 1 of 34 Forecasting is very difficult. especially about the

More information

INTRODUCTION TO FORECASTING (PART 2) AMAT 167

INTRODUCTION TO FORECASTING (PART 2) AMAT 167 INTRODUCTION TO FORECASTING (PART 2) AMAT 167 Techniques for Trend EXAMPLE OF TRENDS In our discussion, we will focus on linear trend but here are examples of nonlinear trends: EXAMPLE OF TRENDS If you

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

Time-series Forecasting - Exponential Smoothing

Time-series Forecasting - Exponential Smoothing Time-series Forecasting - Exponential Smoothing Dr. Josif Grabocka ISMLL, University of Hildesheim Business Analytics Business Analytics 1 / 26 Motivation Extreme recentivism: The Naive forecast considers

More information

Automatic Forecasting

Automatic Forecasting Automatic Forecasting Summary The Automatic Forecasting procedure is designed to forecast future values of time series data. A time series consists of a set of sequential numeric data taken at equally

More information

Lecture 1: Introduction to Forecasting

Lecture 1: Introduction to Forecasting NATCOR: Forecasting & Predictive Analytics Lecture 1: Introduction to Forecasting Professor John Boylan Lancaster Centre for Forecasting Department of Management Science Leading research centre in applied

More information

CHAPTER 1: Decomposition Methods

CHAPTER 1: Decomposition Methods CHAPTER 1: Decomposition Methods Prof. Alan Wan 1 / 48 Table of contents 1. Data Types and Causal vs.time Series Models 2 / 48 Types of Data Time series data: a sequence of observations measured over time,

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

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

Forecasting Major Vegetable Crops Productions in Tunisia

Forecasting Major Vegetable Crops Productions in Tunisia International Journal of Research in Business Studies and Management Volume 2, Issue 6, June 2015, PP 15-19 ISSN 2394-5923 (Print) & ISSN 2394-5931 (Online) Forecasting Major Vegetable Crops Productions

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

SCIENCE & TECHNOLOGY

SCIENCE & TECHNOLOGY Pertanika J. Sci. & Technol. 5 (3): 787-796 (017) SCIENCE & TECHNOLOGY Journal homepage: http://www.pertanika.upm.edu.my/ Combination of Forecasts with an Application to Unemployment Rate Muniroh, M. F.

More information

Chapter 7 Forecasting Demand

Chapter 7 Forecasting Demand Chapter 7 Forecasting Demand Aims of the Chapter After reading this chapter you should be able to do the following: discuss the role of forecasting in inventory management; review different approaches

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

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

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

SOLVING PROBLEMS BASED ON WINQSB FORECASTING TECHNIQUES

SOLVING PROBLEMS BASED ON WINQSB FORECASTING TECHNIQUES SOLVING PROBLEMS BASED ON WINQSB FORECASTING TECHNIQUES Mihaela - Lavinia CIOBANICA, Camelia BOARCAS Spiru Haret University, Unirii Street, Constanta, Romania mihaelavinia@yahoo.com, lady.camelia.yahoo.com

More information

Advances in promotional modelling and analytics

Advances in promotional modelling and analytics Advances in promotional modelling and analytics High School of Economics St. Petersburg 25 May 2016 Nikolaos Kourentzes n.kourentzes@lancaster.ac.uk O u t l i n e 1. What is forecasting? 2. Forecasting,

More information

15 yaş üstü istihdam ( )

15 yaş üstü istihdam ( ) Forecasting 1-2 Forecasting 23 000 15 yaş üstü istihdam (2005-2008) 22 000 21 000 20 000 19 000 18 000 17 000 - What can we say about this data? - Can you guess the employement level for July 2013? 1-3

More information

SARIMA-ELM Hybrid Model for Forecasting Tourist in Nepal

SARIMA-ELM Hybrid Model for Forecasting Tourist in Nepal Volume-03 Issue-07 July-2018 ISSN: 2455-3085 (Online) www.rrjournals.com [UGC Listed Journal] SARIMA-ELM Hybrid Model for Forecasting Tourist in Nepal *1 Kadek Jemmy Waciko & 2 Ismail B *1 Research Scholar,

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

Lecture Prepared By: Mohammad Kamrul Arefin Lecturer, School of Business, North South University

Lecture Prepared By: Mohammad Kamrul Arefin Lecturer, School of Business, North South University Lecture 15 20 Prepared By: Mohammad Kamrul Arefin Lecturer, School of Business, North South University Modeling for Time Series Forecasting Forecasting is a necessary input to planning, whether in business,

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

More About Exponential Smoothing

More About Exponential Smoothing More About Exponential Smoothing There is a wealth of methods and literature for the task of time series forecasting. A very good overview and access to methods that are simple to handle can be found here:

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 Using Time Series Models

Forecasting Using Time Series Models Forecasting Using Time Series Models Dr. J Katyayani 1, M Jahnavi 2 Pothugunta Krishna Prasad 3 1 Professor, Department of MBA, SPMVV, Tirupati, India 2 Assistant Professor, Koshys Institute of Management

More information

Lecture 4 Forecasting

Lecture 4 Forecasting King Saud University College of Computer & Information Sciences IS 466 Decision Support Systems Lecture 4 Forecasting Dr. Mourad YKHLEF The slides content is derived and adopted from many references Outline

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

Time-Series Analysis. Dr. Seetha Bandara Dept. of Economics MA_ECON

Time-Series Analysis. Dr. Seetha Bandara Dept. of Economics MA_ECON Time-Series Analysis Dr. Seetha Bandara Dept. of Economics MA_ECON Time Series Patterns A time series is a sequence of observations on a variable measured at successive points in time or over successive

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

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

TIMES SERIES INTRODUCTION INTRODUCTION. Page 1. A time series is a set of observations made sequentially through time

TIMES SERIES INTRODUCTION INTRODUCTION. Page 1. A time series is a set of observations made sequentially through time TIMES SERIES INTRODUCTION A time series is a set of observations made sequentially through time A time series is said to be continuous when observations are taken continuously through time, or discrete

More information

Univariate versus Multivariate Models for Short-term Electricity Load Forecasting

Univariate versus Multivariate Models for Short-term Electricity Load Forecasting Univariate versus Multivariate Models for Short-term Electricity Load Forecasting Guilherme Guilhermino Neto 1, Samuel Belini Defilippo 2, Henrique S. Hippert 3 1 IFES Campus Linhares. guilherme.neto@ifes.edu.br

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

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

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

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

Diploma Part 2. Quantitative Methods. Examiner s Suggested Answers

Diploma Part 2. Quantitative Methods. Examiner s Suggested Answers Diploma Part Quantitative Methods Examiner s Suggested Answers Question 1 (a) The standard normal distribution has a symmetrical and bell-shaped graph with a mean of zero and a standard deviation equal

More information

Antti Salonen PPU Le 2: Forecasting 1

Antti Salonen PPU Le 2: Forecasting 1 - 2017 1 Forecasting Forecasts are critical inputs to business plans, annual plans, and budgets Finance, human resources, marketing, operations, and supply chain managers need forecasts to plan: output

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

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

PPU411 Antti Salonen. Forecasting. Forecasting PPU Forecasts are critical inputs to business plans, annual plans, and budgets

PPU411 Antti Salonen. Forecasting. Forecasting PPU Forecasts are critical inputs to business plans, annual plans, and budgets - 2017 1 Forecasting Forecasts are critical inputs to business plans, annual plans, and budgets Finance, human resources, marketing, operations, and supply chain managers need forecasts to plan: output

More information

Antti Salonen KPP Le 3: Forecasting KPP227

Antti Salonen KPP Le 3: Forecasting KPP227 - 2015 1 Forecasting Forecasts are critical inputs to business plans, annual plans, and budgets Finance, human resources, marketing, operations, and supply chain managers need forecasts to plan: output

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

A Dynamic Combination and Selection Approach to Demand Forecasting

A Dynamic Combination and Selection Approach to Demand Forecasting A Dynamic Combination and Selection Approach to Demand Forecasting By Harsukhvir Singh Godrei and Olajide Olugbenga Oyeyipo Thesis Advisor: Dr. Asad Ata Summary: This research presents a dynamic approach

More information

NATCOR. Forecast Evaluation. Forecasting with ARIMA models. Nikolaos Kourentzes

NATCOR. Forecast Evaluation. Forecasting with ARIMA models. Nikolaos Kourentzes NATCOR Forecast Evaluation Forecasting with ARIMA models Nikolaos Kourentzes n.kourentzes@lancaster.ac.uk O u t l i n e 1. Bias measures 2. Accuracy measures 3. Evaluation schemes 4. Prediction intervals

More information

Forecasting Chapter 3

Forecasting Chapter 3 Forecasting Chapter 3 Introduction Current factors and conditions Past experience in a similar situation 2 Accounting. New product/process cost estimates, profit projections, cash management. Finance.

More information

Chapter 8 - Forecasting

Chapter 8 - Forecasting Chapter 8 - Forecasting Operations Management by R. Dan Reid & Nada R. Sanders 4th Edition Wiley 2010 Wiley 2010 1 Learning Objectives Identify Principles of Forecasting Explain the steps in the forecasting

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

Time Series and Forecasting

Time Series and Forecasting Time Series and Forecasting Introduction to Forecasting n What is forecasting? n Primary Function is to Predict the Future using (time series related or other) data we have in hand n Why are we interested?

More information

Forecasting. Copyright 2015 Pearson Education, Inc.

Forecasting. Copyright 2015 Pearson Education, Inc. 5 Forecasting To accompany Quantitative Analysis for Management, Twelfth Edition, by Render, Stair, Hanna and Hale Power Point slides created by Jeff Heyl Copyright 2015 Pearson Education, Inc. LEARNING

More information

TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA

TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA CHAPTER 6 TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA 6.1. Introduction A time series is a sequence of observations ordered in time. A basic assumption in the time series analysis

More information

Heihe River Runoff Prediction

Heihe River Runoff Prediction Heihe River Runoff Prediction Principles & Application Dr. Tobias Siegfried, hydrosolutions Ltd., Zurich, Switzerland September 2017 hydrosolutions Overview Background Methods Catchment Characterization

More information

Figure 1. Time Series Plot of arrivals from Western Europe

Figure 1. Time Series Plot of arrivals from Western Europe FORECASTING TOURIST ARRIVALS TO SRI LANKA FROM WESTERN EUROPE K. M. U. B. Konarasinghe 1 * 1 Institute of Mathematics & Management, Nugegoda, Sri Lanka INTRODUCTION Sri Lanka was re-emerging after defeating

More information

Forecasting. Dr. Richard Jerz rjerz.com

Forecasting. Dr. Richard Jerz rjerz.com Forecasting Dr. Richard Jerz 1 1 Learning Objectives Describe why forecasts are used and list the elements of a good forecast. Outline the steps in the forecasting process. Describe at least three qualitative

More information

CHAPTER 7 CONCLUSION AND FUTURE WORK

CHAPTER 7 CONCLUSION AND FUTURE WORK 159 CHAPTER 7 CONCLUSION AND FUTURE WORK 7.1 INTRODUCTION Nonlinear time series analysis is an important area of research in all fields of science and engineering. It is an important component of operations

More information

Prediction of Seasonal Rainfall Data in India using Fuzzy Stochastic Modelling

Prediction of Seasonal Rainfall Data in India using Fuzzy Stochastic Modelling Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 13, Number 9 (2017), pp. 6167-6174 Research India Publications http://www.ripublication.com Prediction of Seasonal Rainfall Data in

More information

Statistical Models for Projecting the Situation

Statistical Models for Projecting the Situation 5 Statistical Models for Projecting the Situation Prediction is very difficult, especially about the future. Unknown 1 Statistical models are often used to formally characterize underlying relationships

More information

3. If a forecast is too high when compared to an actual outcome, will that forecast error be positive or negative?

3. If a forecast is too high when compared to an actual outcome, will that forecast error be positive or negative? 1. Does a moving average forecast become more or less responsive to changes in a data series when more data points are included in the average? 2. Does an exponential smoothing forecast become more or

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

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

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

ISSN Original Article Statistical Models for Forecasting Road Accident Injuries in Ghana.

ISSN Original Article Statistical Models for Forecasting Road Accident Injuries in Ghana. Available online at http://www.urpjournals.com International Journal of Research in Environmental Science and Technology Universal Research Publications. All rights reserved ISSN 2249 9695 Original Article

More information

Weather Forecasting. pencils, colored daily weather maps for consecutive days (5)

Weather Forecasting. pencils, colored daily weather maps for consecutive days (5) Long-Term Projects Weather Forecasting Every three hours, the National Weather Service collects data from about 800 weather stations located around the world. Daily newspapers summarize this weather data

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

Time Series Analysis -- An Introduction -- AMS 586

Time Series Analysis -- An Introduction -- AMS 586 Time Series Analysis -- An Introduction -- AMS 586 1 Objectives of time series analysis Data description Data interpretation Modeling Control Prediction & Forecasting 2 Time-Series Data Numerical data

More information

Assistant Prof. Abed Schokry. Operations and Productions Management. First Semester

Assistant Prof. Abed Schokry. Operations and Productions Management. First Semester Chapter 3 Forecasting Assistant Prof. Abed Schokry Operations and Productions Management First Semester 2010 2011 Chapter 3: Learning Outcomes You should be able to: List the elements of a good forecast

More information

Robust control charts for time series data

Robust control charts for time series data Robust control charts for time series data Christophe Croux K.U. Leuven & Tilburg University Sarah Gelper Erasmus University Rotterdam Koen Mahieu K.U. Leuven Abstract This article presents a control chart

More information

CHAPTER 14. Time Series Analysis and Forecasting STATISTICS IN PRACTICE:

CHAPTER 14. Time Series Analysis and Forecasting STATISTICS IN PRACTICE: CHAPTER 14 Time Series Analysis and Forecasting CONTENTS STATISTICS IN PRACTICE: Nevada Occupational Health Clinic 14.1 Time Series Patterns Horizontal Pattern Trend Pattern Seasonal Pattern Trend and

More information

LOAD FORECASTING APPLICATIONS for THE ENERGY SECTOR

LOAD FORECASTING APPLICATIONS for THE ENERGY SECTOR LOAD FORECASTING APPLICATIONS for THE ENERGY SECTOR Boris Bizjak, Univerza v Mariboru, FERI 26.2.2016 1 A) Short-term load forecasting at industrial plant Ravne: Load forecasting using linear regression,

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

Professional forecasting software for Excel. User Guide proforecaster 2011 R1

Professional forecasting software for Excel. User Guide proforecaster 2011 R1 Professional forecasting software for Excel User Guide proforecaster 2011 R1 User Guide proforecaster 2011 R1 Copyright 2011, pro BS UG (haftungsbeschraenkt) & Co. KG. All rights reserved. The program

More information

Package Metrics. November 3, 2017

Package Metrics. November 3, 2017 Version 0.1.3 Title Evaluation Metrics for Machine Learning Package Metrics November 3, 2017 An implementation of evaluation metrics in R that are commonly used in supervised machine learning. It implements

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

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. Simon Shaw 2005/06 Semester II

Forecasting. Simon Shaw 2005/06 Semester II Forecasting Simon Shaw s.c.shaw@maths.bath.ac.uk 2005/06 Semester II 1 Introduction A critical aspect of managing any business is planning for the future. events is called forecasting. Predicting future

More information

Comparison Forecasting with Double Exponential Smoothing and Artificial Neural Network to Predict the Price of Sugar

Comparison Forecasting with Double Exponential Smoothing and Artificial Neural Network to Predict the Price of Sugar Comparison Forecasting with Double Exponential Smoothing and Artificial Neural Network to Predict the Price of Sugar Fauziah Nasir Fauziah *, Aris Gunaryati Universitas Nasional Sawo Manila, South Jakarta.

More information

CHAPTER 4: DATASETS AND CRITERIA FOR ALGORITHM EVALUATION

CHAPTER 4: DATASETS AND CRITERIA FOR ALGORITHM EVALUATION CHAPTER 4: DATASETS AND CRITERIA FOR ALGORITHM EVALUATION 4.1 Overview This chapter contains the description about the data that is used in this research. In this research time series data is used. A time

More information

Weather Prediction Using Historical Data

Weather Prediction Using Historical Data Weather Prediction Using Historical Data COMP 381 Project Report Michael Smith 1. Problem Statement Weather prediction is a useful tool for informing populations of expected weather conditions. Weather

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

Evaluation of Some Techniques for Forecasting of Electricity Demand in Sri Lanka

Evaluation of Some Techniques for Forecasting of Electricity Demand in Sri Lanka Appeared in Sri Lankan Journal of Applied Statistics (Volume 3) 00 Evaluation of Some echniques for Forecasting of Electricity Demand in Sri Lanka.M.J. A. Cooray and M.Indralingam Department of Mathematics

More information

Chart types and when to use them

Chart types and when to use them APPENDIX A Chart types and when to use them Pie chart Figure illustration of pie chart 2.3 % 4.5 % Browser Usage for April 2012 18.3 % 38.3 % Internet Explorer Firefox Chrome Safari Opera 35.8 % Pie chart

More information

Problem Statements in Time Series Forecasting

Problem Statements in Time Series Forecasting Problem Statements in Time Series Forecasting Vadim Strijov, Visiting Professor at IAM METU Computing Center of the Russian Academy of Sciences Institute of Applied Mathematics, Middle East Technical University

More information

FinQuiz Notes

FinQuiz Notes Reading 9 A time series is any series of data that varies over time e.g. the quarterly sales for a company during the past five years or daily returns of a security. When assumptions of the regression

More information

Frequency Forecasting using Time Series ARIMA model

Frequency Forecasting using Time Series ARIMA model Frequency Forecasting using Time Series ARIMA model Manish Kumar Tikariha DGM(O) NSPCL Bhilai Abstract In view of stringent regulatory stance and recent tariff guidelines, Deviation Settlement mechanism

More information

14. Time- Series data visualization. Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai

14. Time- Series data visualization. Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai 14. Time- Series data visualization Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai www.learnersdesk.weebly.com Overview What is forecasting Time series & its components Smooth a data series Moving average

More information

Operations Management

Operations Management Operations Management Chapter 4 Forecasting PowerPoint presentation to accompany Heizer/Render Principles of Operations Management, 7e Operations Management, 9e 2008 Prentice Hall, Inc. 4 1 Outline Global

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