Introduction Some people think that the main idea of forecasting is in predicting the future as accurately as possible. I have bad news for them. The main idea of forecasting is in decreasing the uncertainty. Think about it: any event that we want to predict has some systematic components \(\mu_t\), which could potentially be captured […]
ETS
A simple combination of univariate models
Fotios Petropoulos and I have participated last year in M4 competition. Our approach performed well, finishing as 6th in the competition. This paper in International Journal of Forecasting explains what we used in our approach and why. Here’s the abstract: This paper describes the approach that we implemented for producing the point forecasts and prediction […]
OR60 presentation. Forecasting using exponential smoothing: the past, the present, the future
Robert Fildes asked me to prepare a review of exponential smoothing for OR60. I thought that it would be boring just to look in the past, so I decided to do past + present + future, adding a model that Nikos and I have started working on some time ago (GUM – Generalised Univariate Model). […]
International Symposium on Forecasting 2018
This year I have presented an extension of the research from ISF2017, called “Forecasting intermittent data with complex patterns”. This time we developed the model with “logistic probability”, which allows capturing complex patterns in demand occurrence part of the data. I also tried making the presentation more entertaining and easier to understand by a wider […]
“smooth” package for R. Common ground. Part III. Exogenous variables. Basic stuff
One of the features of the functions in smooth package is the ability to use exogenous (aka “external”) variables. This potentially leads to the increase in the forecasting accuracy (given that you have a good estimate of the future exogenous variable). For example, in retail this can be a binary variable for promotions and we […]
“smooth” package for R. Common ground. Part II. Estimators
UPDATE: Starting from the v2.5.1 the cfType parameter has been renamed into loss. This post has been updated since then in order to include the more recent name. A bit about estimates of parameters Hi everyone! Today I want to tell you about parameters estimation of smooth functions. But before going into details, there are […]
Multiplicative State-Space Models for Intermittent Time Series
John Boylan and I have been working on a paper about state-space models for intermittent data. We have had some good progress in that direction and have submitted the paper to IJF. Although it is still under review, we decided to publish the working paper in order to promote the thing. Here’s the abstract: Intermittent […]
“smooth” package for R. Common ground. Part I. Prediction intervals
UPDATE: Starting from v2.5.1 the parameter intervals has been renamed into interval for the consistency purposes with the other R functions. We have spent previous six posts discussing basics of es() function (underlying models and their implementation). Now it is time to move forward. Starting from this post we will discuss common parameters, shared by […]
“smooth” package for R. es() function. Part VI. Parameters optimisation
UPDATE: Starting from the v2.5.6 the C parameter has been renamed into B. This is now consistent across all the functions. Now that we looked into the basics of es() function, we can discuss how the optimisation mechanism works, how the parameters are restricted and what are the initials values for the parameters in the […]
“smooth” package for R. es() function. Part V. Essential parameters
While the previous posts on es() function contained two parts: theory of ETS and then the implementation – this post will cover only the latter. We won’t discuss anything new, we will mainly look into several parameters that the exponential smoothing function has and what they allow us to do. We start with initialisation of […]