On Decomposition and Combining Methods in Time Series Forecasting

Size: px
Start display at page:

Download "On Decomposition and Combining Methods in Time Series Forecasting"

Transcription

1 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 Deshmukh Roll No: under the guidance of Prof. Bernard Menezes Kanwal Rekhi School of Information Technology Indian Institute of Technology, Bombay Mumbai

2 Abstract Improving the accuracy of forecasting process is necessary to uplift the quality of management decisions. From the earlier work in this area one can conclude that preprocessing (decomposition) and post-processing (combining) when applied to the time series result in increase in the accuracy of the forecasts which is the main aim of the forecasting process. Here we make a survey of the decomposition and combining methods that have been proposed in the past. We also provide the results of the experiments carried out by us with changed definition of trend that incorporates finite look-ahead and the one in which we forecast using the trend series instead of the demand series. We also provide the frequency distribution plots of values forecasted using all experts and those forecasted by Top K (fixed K) experts. We observed that Top K experts have their frequency distribution closer to the actual value for most of the points meaning top K method is indeed beneficial. 1 Introduction Many management and control decisions are often influenced by the current market situation and on how it is expected to change in the near future. An accurate prior estimate of the possible changes in the key factors (e.g. estimate of probable increase in demand of a product) can go a long way in improving the quality of decisions taken. Forecasting deals with the prediction of such future events and normally uses some sophisticated statistical techniques on the maintained historical data to derive that prediction. Forecasting methods used in practice vary from domain to domain. Here we restrict ourselves to time series forecasting. The challenges here are: Decreasing the error in the forecast as much as possible Finding/Developing a relatively inexpensive, easy to maintain forecasting system that guarantees desired accuracy The problem of time series forecasting can be described as: To predict the future values x t+h, given the past values x t, x t 1, x t 2,,x t w+1 of the time series, where w is the length of the window and h 1 is the forecasting horizon. To obtain these predictions, normally statistical models such as ARIMA (Auto-regressive Integrated Moving Average) models[bgg03], exponential smoothing models etc. are used. These models are typically trained by using historical data and can then be used to get the forecasts for future points. The main aim here is to improve the forecasting accuracy. Many techniques such as decomposition, combining etc. are used for this purpose. 2 Literature Survey A time series is a sequence of observations taken sequentially in time. It can be seen as being composed of three components: Trend(change in the local mean of time series), Seasonality(repetition 1

3 of a particular pattern of observations after certain fixed time interval) and Irregular Component(Random noise). This calls for decomposition methods that will generate individual components series from the original series. These methods form one important part of the literature on forecasting. There exist various decomposition methods e.g. Holt-Winter method, Exponential Smoothing method, Exponential smoothing with a damped multiplicative trend [Tay03] etc. that are used to get these component series from the original series. Some of them are discussed in the next section. Another important issue covered in the literature on forecasting is the problem of combining vs model selection. Normally there are many forecasting methods(hereafter referred to as experts ) available, and so one has to decide whether to select only a single expert or to combine the forecasts of different experts in some way to get the final forecast. [Cle89] provides an exhaustive review of combining methods applied in different domains. The primary conclusion here is that forecast accuracy can be substantially improved through combination of multiple individual forecasts. The reason behind this was assumed to be that one expert could not entirely capture the details of underlying process but multiple experts could capture different aspects of it and so should give better result. The somewhat surprising finding is that simple combining methods perform as good as the sophisticated ones. This puzzling observation and some other interesting questions such as in which conditions are combined forecasts most effective, which methods to combine (similar or different methods) and accuracy improvement vs combining cost are raised by [Arm89] in his work. Armstrong also suggests methods like Rule-based Combining which demand development of empirically validated and fully disclosed rules for the selection and combination of methods. These rules can be updated from the knowledge of the situation. [HE05] have looked at the question of whether combining is always beneficial. They carried out certain set of experiments in that direction and concluded that the advantage of combinations is not that the best are better than the best individual forecasts, on average, but that selecting among combinations is less risky than selecting among individual forecasts. The recent work by [ZY04] says that combining tends to reduce the prediction error when there is a difficulty in identifying the best model. Although many model selection criteria exist, all of them suffer from the problem of instability. A model is unstable when a slight change in the data may result in selection of different model thus resulting in high variability in the forecasts. [ZY04] has identified two measures of stability of a model: sequential stability (measure of consistency of selection for different sample sizes) and perturbation stability (a minor perturbation of the data should not change the selected model(outcome) dramatically.) They have also proposed an algorithm called AFTER ( Aggregated Forecast Through Exponential Re-weighting ) Algorithm for combining forecasts. In this method the final forecast is a convex combination of forecasts made by different experts and each expert is given a weight that is updated at each point. The weight is given based on the previous performance of the expert and so experts performing well on the earlier points get higher weight-age. Moving to the methods used for decomposition and combining, lot of work has already been 2

4 done by [MGR + 05],[Set05] and [Sin05]. [MGR + 05] used decomposition techniques followed by application of multiple statistical as well as neural experts for each component series. All the resulting forecasts are joined by using cartesian product that yields a large number of experts. This exponential complexity of the number of experts prompted them to come up with techniques such as Greedy Elimination, Greedy Accretion and BFS Greedy Accretion that reduce the search effort required to find the best combination. [Set05] and [Sin05] further developed their work by inventing methods for dynamic combination of experts such as TopK, DTOPK (Dynamic TOP K), ETOPK (Exponential Top K). They also demonstrated that rank-based combining performs as good as weight-based combining [ZY04]. They made several important contributions such as ranking similarity measure to cluster a group of series and observance of inconsistent rank phenomenon. They have also used different decomposition methods by changing the definitions of trend, seasonality etc. parameters. The application of these methods resulted in average improvement of 10% over Holt-Winter method which is a standard method of forecasting. 3 Forecasting techniques and concepts The main objective of the time series analysis is to model a process, which is generating the data, to provide compact description and to understand the generating process. Decomposition(preprocessing) and combining(post-processing) when applied on the time series result in improvement of the accuracy of forecasts [MGR + 05]. After decomposing the series, statistical experts such as ARIMA etc. are applied to get the forecasts of component series. Forecasts of the individual components can be combined to get the final forecast by using operators + and. So there are 8 possible ways of doing this. Two of them are shown below: D t = T t S t I t Purely multiplicative model D t = T t + S t + I t Purely additive model We will now look at some of the existing methods used for this purpose. 3.1 Smoothing models As said earlier, time series is assumed to be composed of trend, seasonality and irregular component. We will now discuss about some of the methods for extracting these components from original series: Holt s Method This method is used when a series has no seasonality and exhibits some form of trend. For a series x t, the k step ahead forecast function is given by x t+k = L t + kt t 3

5 where L t is the current level and T t is the current slope, the updating equations for level and slope are based on simple exponential smoothing and are as follows L t = αx t + (1 α)(l t 1 + T t 1 ) where 0 < α < 1 T t = β(l t L t 1 ) + (1 β)t t 1 where 0 < β < 1 The reasonable starting values for level and slope are L 1 = x 1, T 1 = x 2 x Holt-Winter Method The Holt-Winter s method is used for the time series that has both trend and seasonal components. There are two variants of this method, additive and multiplicative. The seasonality is multiplicative if the magnitude of the seasonal variation increases with an increase in the mean level of the time series. It is additive if the seasonal effect does not depend on the current mean level of the time series. The basic Holt-Winter forecasting method with multiplicative seasonality (S t ), trend (T t ) and seasonal index (I t ) is described by S t = α(d t /I t p ) + (1 α)(s t 1 + T t 1 ) T t = β(s t S t 1 ) + (1 β)t t 1 I t = γ(d t /S t ) + (1 γ)i t p Here p is the number of observation points in a cycle (p = 4 for quarterly data). α,β and γ are the smoothing constants. The forecast at time t for time t + i is: D t+i = (S t + i T t )I t p+i Exponential Smoothing with damped multiplicative trend Like the seasonality component trend can also be additive or multiplicative. The multiplicative trend is modelled by smoothing successive ratios of the local level instead of the subtraction of levels done in the additive formulation. It has been observed that damped version of Holt s method gives good results as it offsets the overshooting of forecast beyond the data. On the similar line, [Tay03] has introduced the damped version (using extra parameter φ) of multiplicative trend formulation. This formulation is described by S t = αx t + (1 α)(s t 1 R φ t 1 ) R t = γ(s t /S t 1 ) + (1 γ)r φ t 1 and the forecast is given by X t+m = S t R t P m i=1 φi where S t is the level, R t is the ratio that models the multiplicative trend and X t+m is the m-step ahead forecast. 4

6 3.2 Decomposition and Combining Decomposition (preprocessing) and combining (post-processing) are the most important concepts in forecasting. Variety of methods have been developed for both of them and have yielded significant improvement Decomposition Methods The mathematical formulation of a practical basic decomposition method is as follows: 11 i=0 T t = D t i ( 12 Dt S t = avg, D (t p), D (t 2p), D ) (t 3p), T t T (t p) T (t 2p) T (t 3p) I t = D t T t S t where p is seasonality period. [Sin05] have experimented with some variations of the standard definitions of trend and seasonality. They have introduced a weight-based decomposition strategy that gives higher weight-age to the present data while averaging to compute the seasonality. The modified definition (called 4321 decomposition) of the seasonality component that takes into account only a finite past is S t = 0.4 Dt T t S t p S t 2p S t 3p where p is the seasonality period. Another variation of seasonality definition is based on the exponential smoothing method and uses a parameter α. That way the older data gets less and less weight. The definition of seasonality then is as follows: S t = h i Dt +α S T t p +α 2 S t 2p +α 3 S t 3p +... t [1+α+α 2 +α ] Here the denominator serves to normalize the values. [Sin05] also suggested the change in definition of trend from one-sided trend to centered trend. But that implies we should know equal number of points from the future and the past. So the approach suggested is to forecast some points say k using some standard technique such as holt-winter and use these forecasted values to compute the trend along with (12-k) actual values. This is called k-step lookahead. The experiments section contains the details of how this method was implemented by us and some other variations of the same. 5

7 3.2.2 Combining Methods Combining tends to reduce the variability in the forecast and so is used widely in forecasting. The simplest method is to use mean/median to combine the forecasts of different experts. Other strategies such as Greedy Elimination, Greedy Accretion etc. are also proposed. In the elimination approach, at each step an expert whose absence decreases the MAPE by largest amount is eliminated. Accretion follows the exact reverse of this approach Weight-based combining In this approach, forecasts of different experts are given weights prior to combining typically based on their performance in the past. AFTER[ZY04] is an example of such method. AFTER method considers forecasts of all experts for combining. It is also possible to have weight-based method that considers finite past only Rank-based combining There are other methods that select only a few experts and then use simple methods like mean/median to combine their forecasts. [Set05] developed a class of methods called Rank-based methods and they perform comparable to the weight-based combining methods. Some variants of the rankbased combining methods are: TopK: Experts are ranked on the basis of some measure of performance (such as MAPE) and the top k experts for previous instant are then combined to get the final forecast. [Set05] performed some experiments to find out the optimum K value, but no such single value was found as expected. DTOPK (Dynamic TopK): Here the parameter K is selected dynamically and may vary from point to point instead of being fixed statically. ETOPK (Exponential TopK): There are two ranking schemes: global scheme in which the entire past is considered and other is a local ranking scheme e.g. Exponential Rank which weighs the recent data more than the past data. In the experiments carried out, [Set05] observed a Inconsistent Rank Phenomenon meaning the local ranking at times moves away from global ranking. This implies that merely using Top K experts may not be sufficient as it is based on global ranking and so they came up with ETOPK method based on EWMAPE (Exponentially Weighted MAPE) error measure. EWMAPE is defined as shown below: EWMAPE(α,T) = T t=1 APE(t) α(t t) T ;α 1 t=1 α(t t) In effect, ETopK method of combining is a TopK method, but instead of using a uniform window of past performance measure (APE), it is using an exponentially decaying window, 6

8 thereby introducing a new parameter α. The TopK method is a special case of ETopK method with α = 1. 1C2C method: Analysis of the K values used by DTOPK algorithm against time done by [Set05] resulted in one interesting observation - The K value used to drop suddenly in the ending time instants. This indicated the inability of DTOPK method to detect the fact that lower K values can perform well at earlier time instants as well. This inability stems from the fact that DTOPK method considers the whole past performance while evaluating K. So the question now is to find the time boundary at which this shift in the optimal K value happens. Effectively time series can be seen as being made of clusters of time instants and for all instants in a cluster a particular value of K is optimal. The time boundary divides the series into two clusters otherwise the entire series can be considered as one single cluster and hence the name 1C2C (1 cluster 2 cluster). [Set05] provide an algorithmic formulation to find the time boundary and to decide whether to use 1C or 2C model. 3.3 Error Measures As the main aim in forecasting is to increase the accuracy of the forecasts, error measures are very important from a forecaster s point of view. There are variety of error measures that are used in practice. Some of them are listed below: 1. Mean Squared Error(MSE) : MSE = N (observation j prediction j ) 2 /N j=1 2. Root Mean Squared Error(RMSE) : RMSE = N (observation j prediction j ) 2 /N j=1 3. Normalized Mean Squared Error(NMSE) : N N (observation j prediction j ) 2 / (observation j mean) 2 j=1 4. Mean Absolute Percentage Error(MAPE) : j=1 N i=0 MAPE = 100 ( forecasted i actual i )/actual i N 7

9 5. Unbiased Absolute Percentage Error (UAPE) aka Symmetric Mean Absolute Percentage Error(SMAPE): UAPE = 100 N N i=0 forecasted i actual i (actual i + forecasted i )/2 6. Median Absolute Percentage Error (MdAPE): This measure is almost similar to the MAPE, but in MAPE mean is used for summarization whereas in MdAPE median is used for summarization across series. For the experiments that will be discussed in the coming sections MAPE is used as error measure. 4 Experiments Performed 4.1 Distribution plots of the forecasted values With the intent of studying the distribution of values predicted by various forecasting experts, distribution plots of the forecasts were plotted for four series: Abraham, Furniture, Beer and HSales series. We plotted the distribution graphs for every other point after skipping 20 points in the time series. Thus we plotted the distribution graphs for point 0, point 20, point 40 and so on. We also plotted the graphs that indicate the distribution of forecasts generated by Top K (K=10000, fixed statically) and compared them with those of all experts. These graphs are obtained by dividing the range from maximum forecasted value to minimum forecasted value into some fixed number of intervals (Here 100). Then based on the value, each forecast was classified in a particular interval and the frequency count of that interval was incremented. The graphs shown in figure 3 demonstrate the case when top K expert work well. This means if we take the mean of values predicted by top K experts and mean of values predicted by all experts, the former will be closer to actual value as compared to the later. The graphs shown in figure 6 demonstrate the case when top K experts don t perform well as compared to all forecasting experts. We made some interesting observations that are as follows: Spread of distribution generated by top K experts is less as compared to spread of distribution generated by all forecasting experts. Top K approach appears to work well in many cases meaning that if we take the mean of forecasts given by top K experts and those given by all experts the former is closer to actual value than the later. This can be easily observed in figure 3 just by visual inspection. For furniture series, all distribution plots were of the shape of a spike indicating very high confidence among experts and for such cases we may not need combining methods and thus save on the combining costs. Later in an attempt to find any locality in the shape of distribution (a group of points in close vicinity sharing some common shape of distribution) and/or periodicity (some shape of distribution 8

10 Figure 1: Distribution of values forecasted by all experts Figure 2: Distribution of values forecasted by Top experts Figure 3: Abraham Series: Point 20 Actual value= possibly repeating after some fixed time interval) we plotted the distribution plots (generated by all experts) of all points in the series. For abraham series we did not found any locality or periodicity in the distribution plots. But for the Beer series, from visual inspection we can say that the plots showed periodicity (period=12) in the shape of the distribution to some extent especially in the later half of the series. We plan to explore the implications of this observation in future. 4.2 Different trend definitions The experiments were carried out on 21 time series. They exhibit seasonality with a period of 12. Different experts were used for each component of the series. In all we used 86 trend experts, 33 seasonality experts and 34 experts for the irregular component. This accounts to = experts in total Trend definition with look-ahead The change in the definition of trend from one-sided to centered is suggested in the work by [Sin05]. But this shift to the definition of centered trend implies that we should know points in the future for calculation of trend. We can have variants of this approach as just one-point lookahead, two-point lookahead and so on. In the cheating case, where we know all the points in the series beforehand, calculation of trend is not a problem but for the non-cheating case we can estimate the values by using some standard technique such as Holt-Winter method. We conducted experiments for the cheating case and the results are as shown in the table 1. For the details about naming convention 9

11 Figure 4: Distribution of values forecasted by all experts Figure 5: Distribution of values forecasted by Top experts Figure 6: Abraham Series: Point 80 Actual value= of the forecasting models refer to Appendix A. Results of non-cheating case for the same approach can be found in [Sin05] Forecasting trend component In the normal approach of one-step lookahead, while forecasting the demand value at instant t, we forecast it using some standard method and use that value to calculate the trend at point t-1. Now since we know the actual value at instant t-1, we can find seasonality and irregular component. All these components can then be forecasted and combined to get the final forecast at point t. In this experiment we tried another approach which is as follows: When we want to forecast the demand value at instant t, we know the trend up to instant t-2 and actual demand values up to instant t-1. Now instead of forecasting the demand series, we forecast the trend series using 86 trend experts and combine there forecasts using DTOPK algorithm at instant t-1. Using the forecasted trend and actual value, we calculate the seasonality and irregular component at instant t-1. We now again repeat the forecasting cycle and get the values of components at instant t and then combine them to get a final forecast at time t. After we get the final demand series forecast at time t we can calculate the more accurate trend value at instant t-1 using the newly forecasted demand series value. The results of this approach are compared with those of earlier decomposition techniques in the table 2. The last column in that table corresponds to the results of this approach. For the details about naming convention of the forecasting models refer to Appendix A. 10

12 Series HW T0-1.S1-1 T0-2.S1-1 T0-3.S1-1 T0-4.S1-1 T0-5.5.S1-1 abraham beer dry equip fortif gasoline hsales merchandise motorparts newcar paper red rose shoe software spaper spark stores sweet total wine Improvement Table 1: Decomposition with finite lookahead 11

13 Series HW T1-0.S1-1 T1-1[HW].S1-1 T1-2[HW].S1-1 T1-1[DT].S1-1 T2-1.S1-1 abraham beer dry equip fortif gasoline hsales merchandise motorparts newcar paper red rose shoe software spaper spark stores sweet total wine improvement Table 2: MAPEs using various definitions of trend in Decomposition 5 Conclusion and Future Work The earlier work in this field has underlined the fact that decomposition and combining leads to increase in the forecasting accuracy. The experiments that we carried out signify that: Comparison between frequency distribution plots of values forecasted by all experts and those forecasted by top K experts revealed that for most of the points top K approach works better. Changing the definition of trend from one-sided to centered gives improvement in the accuracy as indicated in the table 1. The approach in which we forecast the trend first rather than the demand series gives some improvement as compared to earlier approaches as can be seen from table 2. 12

14 We plan to explore the below mentioned directions of work in future: From the distribution plots we observed that for some points, actual value was outside of the range generated by maximum and minimum forecasted value at that point. Such points can be treated as outliers. We plan to verify whether other outlier detection procedures indeed classify those points as outliers. In the experiment described in the previous section in which we forecast the trend first, we combine the forecasts of the 86 trend experts prior to finding seasonality and irregular component. Another approach is to get the seasonality and irregular component for each trend forecast. This will result in T (S + I) forecasts that can then be combined to get the final forecast at instant t. This approach is currently being explored. Currently we are using just MAPE as the error measure for our experiments. We plan to try different error measures like MdAPE (Median APE) etc. in future. MdAPE may work well for series that have more outliers as median is not affected by outlier. We may also include neural networks in our expert pool as they are known to capture some nontrivial patterns in the data and study their effect on accuracy. Our final aim is to come up with a rule-based system wherein we have rules that will guide our choice of experts to be used, decision to use combining or model selection and selection of experts to be used in combining etc References [Arm89] [BGG03] [Cle89] [HE05] J. Scott Armstrong. Combining Forecasts: The End of the Beginning or the Beginning of the End? International Journal of Forecasting, G. E. Box, G.M.Jenkins, and G.C.Reinsel. Time Series Analysis. Pearson Education, Robert T. Clemen. Combining forecasts: A review and annotated bibliography. International Journal of Forecasting, Michele Hibon and Theodoros Evgeniou. To combine or not to combine: selecting among forecasts and their combinations. International Journal of Forecasting, [MGR + 05] Bernard Menezes, Pankaj Gulhane, Timma Reddy, Kalam Shah, and S.A.Soman. Forecasting using Decomposition and Combination of Experts. Technical Report, Kanwal Rekhi School of Information Technology, IIT Bombay, [Set05] Abhishek Seth. On Using a Multitude of Time Series Forecasting Models. Master s Thesis, Kanwal Rekhi School of Information Technology, IIT Bombay,

15 [Sin05] [Tay03] [ZY04] Rajveer Singh. On Using Various Decomposition Methods in Time Series Forecasting. Master s Thesis, Kanwal Rekhi School of Information Technology, IIT Bombay, James W. Taylor. Exponential smoothing with a damped multiplicative trend. International Journal of Forecasting, Hui Zou and Yuhong Yang. Combining time series model for forecasting. International Journal of Forecasting,

16 Appendix A Naming Convention for Forecasting Models The naming convention used for our forecasting models is described here. The name of the model consist of two parts: Trend part and Seasonality part separated by. (period). The general form of the name of model is as follows: Here, TX-L[Forecast Method].SX s -P T marks the start of the trend component part X can take the following values: 0 Cheating case (The one where we know the entire series beforehand) 1 Data series is forecasted 2 Trend series is forecasted followed by combining 3 Trend series is forecasted and combining NOT used prior to finding the seasonality and irregular component L is the look-ahead value so L = 0,1,2,... [Forecast Method]: This contains a two letter abbreviation of the forecasting method within square brackets if lookahead is used e.g. HW for Holt-Winter method. S marks the start of the seasonality component part X s indicates the type of window (window of past values). It can take following values: 0 Linear window (weights change linearly within the window) 1 Exponential window (weights change exponentially within the window) P stands for the value of the parameter α for exponential window 15

Forecasting Using Consistent Experts Dr. Bernard Menezes Professor Dept. Of Comp Sc & Engg IIT Bombay, Powai, Mumbai

Forecasting Using Consistent Experts Dr. Bernard Menezes Professor Dept. Of Comp Sc & Engg IIT Bombay, Powai, Mumbai M.Vijayalakshmi PhD Student Dept. Of Comp Sc & Engg IIT Bombay, Powai, Mumbai mviji@it.iitb.ac.in Forecasting Using Consistent Experts Dr. Bernard Menezes Professor Dept. Of Comp Sc & Engg IIT Bombay,

More information

Modified Holt s Linear Trend Method

Modified Holt s Linear Trend Method Modified Holt s Linear Trend Method Guckan Yapar, Sedat Capar, Hanife Taylan Selamlar and Idil Yavuz Abstract Exponential smoothing models are simple, accurate and robust forecasting models and because

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. 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

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages:

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages: Glossary The ISI glossary of statistical terms provides definitions in a number of different languages: http://isi.cbs.nl/glossary/index.htm Adjusted r 2 Adjusted R squared measures the proportion of the

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

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

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

Combining Forecasts: The End of the Beginning or the Beginning of the End? *

Combining Forecasts: The End of the Beginning or the Beginning of the End? * Published in International Journal of Forecasting (1989), 5, 585-588 Combining Forecasts: The End of the Beginning or the Beginning of the End? * Abstract J. Scott Armstrong The Wharton School, University

More information

Forecasting: The First Step in Demand Planning

Forecasting: The First Step in Demand Planning Forecasting: The First Step in Demand Planning Jayant Rajgopal, Ph.D., P.E. University of Pittsburgh Pittsburgh, PA 15261 In a supply chain context, forecasting is the estimation of future demand General

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

Another Error Measure for Selection of the Best Forecasting Method: The Unbiased Absolute Percentage Error

Another Error Measure for Selection of the Best Forecasting Method: The Unbiased Absolute Percentage Error Another Error Measure for Selection of the Best Forecasting Method: The Unbiased Absolute Percentage Error Fred Collopy The Weatherhead School of Management Case Western Reserve University Cleveland, Ohio

More information

Industrial Engineering Prof. Inderdeep Singh Department of Mechanical & Industrial Engineering Indian Institute of Technology, Roorkee

Industrial Engineering Prof. Inderdeep Singh Department of Mechanical & Industrial Engineering Indian Institute of Technology, Roorkee Industrial Engineering Prof. Inderdeep Singh Department of Mechanical & Industrial Engineering Indian Institute of Technology, Roorkee Module - 04 Lecture - 05 Sales Forecasting - II A very warm welcome

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

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

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 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

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

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

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

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

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

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

Estimation Techniques for Monitoring and Controlling the Performance of the Computer Communication Networks

Estimation Techniques for Monitoring and Controlling the Performance of the Computer Communication Networks American Journal of Applied Sciences 2 (1): 1395-14, 25 ISSN 1546-9239 25 Science Publications Estimation Techniques for Monitoring and Controlling the Performance of the Computer Communication Networks

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

The SAB Medium Term Sales Forecasting System : From Data to Planning Information. Kenneth Carden SAB : Beer Division Planning

The SAB Medium Term Sales Forecasting System : From Data to Planning Information. Kenneth Carden SAB : Beer Division Planning The SAB Medium Term Sales Forecasting System : From Data to Planning Information Kenneth Carden SAB : Beer Division Planning Planning in Beer Division F Operational planning = what, when, where & how F

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

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

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

22/04/2014. Economic Research

22/04/2014. Economic Research 22/04/2014 Economic Research Forecasting Models for Exchange Rate Tuesday, April 22, 2014 The science of prognostics has been going through a rapid and fruitful development in the past decades, with various

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

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

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

Chapter 12: An introduction to Time Series Analysis. Chapter 12: An introduction to Time Series Analysis

Chapter 12: An introduction to Time Series Analysis. Chapter 12: An introduction to Time Series Analysis Chapter 12: An introduction to Time Series Analysis Introduction In this chapter, we will discuss forecasting with single-series (univariate) Box-Jenkins models. The common name of the models is Auto-Regressive

More information

FORECASTING STANDARDS CHECKLIST

FORECASTING STANDARDS CHECKLIST FORECASTING STANDARDS CHECKLIST An electronic version of this checklist is available on the Forecasting Principles Web site. PROBLEM 1. Setting Objectives 1.1. Describe decisions that might be affected

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

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

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

Decision 411: Class 3

Decision 411: Class 3 Decision 411: Class 3 Discussion of HW#1 Introduction to seasonal models Seasonal decomposition Seasonal adjustment on a spreadsheet Forecasting with seasonal adjustment Forecasting inflation Poor man

More information

Forecasting. Chapter Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall

Forecasting. Chapter Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall Forecasting Chapter 15 15-1 Chapter Topics Forecasting Components Time Series Methods Forecast Accuracy Time Series Forecasting Using Excel Time Series Forecasting Using QM for Windows Regression Methods

More information

Decision 411: Class 3

Decision 411: Class 3 Decision 411: Class 3 Discussion of HW#1 Introduction to seasonal models Seasonal decomposition Seasonal adjustment on a spreadsheet Forecasting with seasonal adjustment Forecasting inflation Poor man

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

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

Machine Learning Ensemble Learning I Hamid R. Rabiee Jafar Muhammadi, Alireza Ghasemi Spring /

Machine Learning Ensemble Learning I Hamid R. Rabiee Jafar Muhammadi, Alireza Ghasemi Spring / Machine Learning Ensemble Learning I Hamid R. Rabiee Jafar Muhammadi, Alireza Ghasemi Spring 2015 http://ce.sharif.edu/courses/93-94/2/ce717-1 / Agenda Combining Classifiers Empirical view Theoretical

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

Chapter 9: Forecasting

Chapter 9: Forecasting Chapter 9: Forecasting One of the critical goals of time series analysis is to forecast (predict) the values of the time series at times in the future. When forecasting, we ideally should evaluate the

More information

An approach to make statistical forecasting of products with stationary/seasonal patterns

An approach to make statistical forecasting of products with stationary/seasonal patterns An approach to make statistical forecasting of products with stationary/seasonal patterns Carlos A. Castro-Zuluaga (ccastro@eafit.edu.co) Production Engineer Department, Universidad Eafit Medellin, Colombia

More information

The value of feedback in forecasting competitions

The value of feedback in forecasting competitions ISSN 1440-771X Department of Econometrics and Business Statistics http://www.buseco.monash.edu.au/depts/ebs/pubs/wpapers/ The value of feedback in forecasting competitions George Athanasopoulos and Rob

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

Decision 411: Class 3

Decision 411: Class 3 Decision 411: Class 3 Discussion of HW#1 Introduction to seasonal models Seasonal decomposition Seasonal adjustment on a spreadsheet Forecasting with seasonal adjustment Forecasting inflation Log transformation

More information

How Accurate is My Forecast?

How Accurate is My Forecast? How Accurate is My Forecast? Tao Hong, PhD Utilities Business Unit, SAS 15 May 2012 PLEASE STAND BY Today s event will begin at 11:00am EDT The audio portion of the presentation will be heard through your

More information

Simple robust averages of forecasts: Some empirical results

Simple robust averages of forecasts: Some empirical results Available online at www.sciencedirect.com International Journal of Forecasting 24 (2008) 163 169 www.elsevier.com/locate/ijforecast Simple robust averages of forecasts: Some empirical results Victor Richmond

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

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

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

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

CSE 417T: Introduction to Machine Learning. Final Review. Henry Chai 12/4/18

CSE 417T: Introduction to Machine Learning. Final Review. Henry Chai 12/4/18 CSE 417T: Introduction to Machine Learning Final Review Henry Chai 12/4/18 Overfitting Overfitting is fitting the training data more than is warranted Fitting noise rather than signal 2 Estimating! "#$

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

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

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

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

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

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Exponential Smoothing 02/13/03 page 1 of 38

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Exponential Smoothing 02/13/03 page 1 of 38 demand -5-4 -3-2 -1 0 1 2 3 Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa Exponential Smoothing 02/13/03 page 1 of 38 As with other Time-series forecasting methods,

More information

Reinforcement Learning. Spring 2018 Defining MDPs, Planning

Reinforcement Learning. Spring 2018 Defining MDPs, Planning Reinforcement Learning Spring 2018 Defining MDPs, Planning understandability 0 Slide 10 time You are here Markov Process Where you will go depends only on where you are Markov Process: Information state

More information

Deep Learning Architecture for Univariate Time Series Forecasting

Deep Learning Architecture for Univariate Time Series Forecasting CS229,Technical Report, 2014 Deep Learning Architecture for Univariate Time Series Forecasting Dmitry Vengertsev 1 Abstract This paper studies the problem of applying machine learning with deep architecture

More information

Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall.

Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall. 13 Forecasting PowerPoint Slides by Jeff Heyl For Operations Management, 9e by Krajewski/Ritzman/Malhotra 2010 Pearson Education 13 1 Forecasting Forecasts are critical inputs to business plans, annual

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

at least 50 and preferably 100 observations should be available to build a proper model

at least 50 and preferably 100 observations should be available to build a proper model III Box-Jenkins Methods 1. Pros and Cons of ARIMA Forecasting a) need for data at least 50 and preferably 100 observations should be available to build a proper model used most frequently for hourly or

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

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

Forecasting with group seasonality

Forecasting with group seasonality Forecasting with group seasonality Ouwehand, P. DOI: 10.6100/IR608817 Published: 01/01/2006 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers)

More information

Theoretical and Simulation-guided Exploration of the AR(1) Model

Theoretical and Simulation-guided Exploration of the AR(1) Model Theoretical and Simulation-guided Exploration of the AR() Model Overview: Section : Motivation Section : Expectation A: Theory B: Simulation Section : Variance A: Theory B: Simulation Section : ACF A:

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

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

Econ 300/QAC 201: Quantitative Methods in Economics/Applied Data Analysis. 17th Class 7/1/10

Econ 300/QAC 201: Quantitative Methods in Economics/Applied Data Analysis. 17th Class 7/1/10 Econ 300/QAC 201: Quantitative Methods in Economics/Applied Data Analysis 17th Class 7/1/10 The only function of economic forecasting is to make astrology look respectable. --John Kenneth Galbraith show

More information

Statistical Methods for Forecasting

Statistical Methods for Forecasting Statistical Methods for Forecasting BOVAS ABRAHAM University of Waterloo JOHANNES LEDOLTER University of Iowa John Wiley & Sons New York Chichester Brisbane Toronto Singapore Contents 1 INTRODUCTION AND

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

Mitigating end-effects in Production Scheduling

Mitigating end-effects in Production Scheduling Mitigating end-effects in Production Scheduling Bachelor Thesis Econometrie en Operationele Research Ivan Olthuis 359299 Supervisor: Dr. Wilco van den Heuvel June 30, 2014 Abstract In this report, a solution

More information

Automatic Identification of Time Series Features for Rule-Based Forecasting

Automatic Identification of Time Series Features for Rule-Based Forecasting Marquette University e-publications@marquette Management Faculty Research and Publications Management, Department of 4-1-2001 Automatic Identification of Time Series Features for Rule-Based Forecasting

More information

Cyclical Effect, and Measuring Irregular Effect

Cyclical Effect, and Measuring Irregular Effect Paper:15, Quantitative Techniques for Management Decisions Module- 37 Forecasting & Time series Analysis: Measuring- Seasonal Effect, Cyclical Effect, and Measuring Irregular Effect Principal Investigator

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

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

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 COARSE RICE PRICES IN BANGLADESH

FORECASTING COARSE RICE PRICES IN BANGLADESH Progress. Agric. 22(1 & 2): 193 201, 2011 ISSN 1017-8139 FORECASTING COARSE RICE PRICES IN BANGLADESH M. F. Hassan*, M. A. Islam 1, M. F. Imam 2 and S. M. Sayem 3 Department of Agricultural Statistics,

More information

i=1 = H t 1 (x) + α t h t (x)

i=1 = H t 1 (x) + α t h t (x) AdaBoost AdaBoost, which stands for ``Adaptive Boosting", is an ensemble learning algorithm that uses the boosting paradigm []. We will discuss AdaBoost for binary classification. That is, we assume that

More information

Justin Appleby CS 229 Machine Learning Project Report 12/15/17 Kevin Chalhoub Building Electricity Load Forecasting

Justin Appleby CS 229 Machine Learning Project Report 12/15/17 Kevin Chalhoub Building Electricity Load Forecasting Justin Appleby CS 229 Machine Learning Project Report 12/15/17 Kevin Chalhoub Building Electricity Load Forecasting with ARIMA and Sequential Linear Regression Abstract Load forecasting is an essential

More information

A MACRO-DRIVEN FORECASTING SYSTEM FOR EVALUATING FORECAST MODEL PERFORMANCE

A MACRO-DRIVEN FORECASTING SYSTEM FOR EVALUATING FORECAST MODEL PERFORMANCE A MACRO-DRIVEN ING SYSTEM FOR EVALUATING MODEL PERFORMANCE Bryan Sellers Ross Laboratories INTRODUCTION A major problem of forecasting aside from obtaining accurate forecasts is choosing among a wide range

More information

MODELLING TRAFFIC FLOW ON MOTORWAYS: A HYBRID MACROSCOPIC APPROACH

MODELLING TRAFFIC FLOW ON MOTORWAYS: A HYBRID MACROSCOPIC APPROACH Proceedings ITRN2013 5-6th September, FITZGERALD, MOUTARI, MARSHALL: Hybrid Aidan Fitzgerald MODELLING TRAFFIC FLOW ON MOTORWAYS: A HYBRID MACROSCOPIC APPROACH Centre for Statistical Science and Operational

More information

Introduction to Machine Learning Prof. Sudeshna Sarkar Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Introduction to Machine Learning Prof. Sudeshna Sarkar Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Introduction to Machine Learning Prof. Sudeshna Sarkar Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Module 2 Lecture 05 Linear Regression Good morning, welcome

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

Electric Load Forecasting Using Wavelet Transform and Extreme Learning Machine

Electric Load Forecasting Using Wavelet Transform and Extreme Learning Machine Electric Load Forecasting Using Wavelet Transform and Extreme Learning Machine Song Li 1, Peng Wang 1 and Lalit Goel 1 1 School of Electrical and Electronic Engineering Nanyang Technological University

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

Cost Analysis and Estimating for Engineering and Management

Cost Analysis and Estimating for Engineering and Management Cost Analysis and Estimating for Engineering and Management Chapter 5 Forecasting 004 Pearson Education, Inc. Ch 5-1 Working with Data Overview Graphing, Statistics Regression / Curve Fitting Confidence

More information

Evolutionary Functional Link Interval Type-2 Fuzzy Neural System for Exchange Rate Prediction

Evolutionary Functional Link Interval Type-2 Fuzzy Neural System for Exchange Rate Prediction Evolutionary Functional Link Interval Type-2 Fuzzy Neural System for Exchange Rate Prediction 3. Introduction Currency exchange rate is an important element in international finance. It is one of the chaotic,

More information

On the Use of Forecasts when Forcing Annual Totals on Seasonally Adjusted Data

On the Use of Forecasts when Forcing Annual Totals on Seasonally Adjusted Data The 34 th International Symposium on Forecasting Rotterdam, The Netherlands, June 29 to July 2, 2014 On the Use of Forecasts when Forcing Annual Totals on Seasonally Adjusted Data Michel Ferland, Susie

More information

Spring Developed by: Latonya Morris and James Orr EMIS 4395 May 7, Forecasting for the Future:

Spring Developed by: Latonya Morris and James Orr EMIS 4395 May 7, Forecasting for the Future: 2002-02 pring 2002 Forecasting for the Future: Developing a Forecasting Model for Brinker International Latonya Morris, James On Forecasting for the Future: Developing a Forecasting Model for Brinker International

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

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

Analysis of Violent Crime in Los Angeles County

Analysis of Violent Crime in Los Angeles County Analysis of Violent Crime in Los Angeles County Xiaohong Huang UID: 004693375 March 20, 2017 Abstract Violent crime can have a negative impact to the victims and the neighborhoods. It can affect people

More information

Reliability and Risk Analysis. Time Series, Types of Trend Functions and Estimates of Trends

Reliability and Risk Analysis. Time Series, Types of Trend Functions and Estimates of Trends Reliability and Risk Analysis Stochastic process The sequence of random variables {Y t, t = 0, ±1, ±2 } is called the stochastic process The mean function of a stochastic process {Y t} is the function

More information