What is naive model in time series?

Study

  • Future students
  • MBA programs
  • Executive education
  • Current students

Research

  • Our research
  • Our researchers
  • Graduate research program

Industry & alumni

  • Alumni
  • Partnerships, Alliances and Advisory Boards
  • Engage with our students

News
Events

  • Upcoming events
  • Webinar series
  • Business awards

About us
More

Naive forecasting models are based exclusively on historical observation of sales or other variables, such as earning and cash flows. They do not attempt to explain the underlying causal relationships that produce the variable being forecast.

Naive models may be classified into two groups. One group consists of simple projection models. These models require inputs of data from recent observation, but no statistical analysis is performed. The second group is made up of models that while naive, are complex enough to require a computer. Traditional methods such as classical decomposition, moving average, and exponential smoothing models are some examples.

The advantage is that it is inexpensive to develop, store data, and operate. The disadvantage is that it does not consider any possible causal relationships that underly the forecasted variable.

A simple example of a naive type:

  1. Use the actual sales of the current period as the forecast for the next period. Let us the symbol Y't+1 as the forecast value and the symbol Yt as the actual value. Then

  2. If you consider trends, then

    This model adds the latest observed absolute period -to-period change to the most recent observed level of the variable.

  3. If you want to incorporate the rate of change rather than the absolute ...

In time series forecasting, the naive forecast - where the forecast for all future periods is set equal to the value from the current period - is the most simple of all forecasting methods. It generally gets a bad wrap, due in large part to this simplicity - how can such a basic methodology be any good? In many applications, its reputation is often justified by - at best - average performance, especially when forecasting many periods ahead. Forecasting inventories (such as reservoir storage levels) is one obvious example. Forecasting inventory levels in 6 months to be equal to todays leaves much information on the table that could easily be used to get a better, more accurate forecast.

However, in a number of applications the naive forecast performs surprisingly well. One example of this are market prices, of which power market prices are one example. Indeed, more complex forecasting methods often struggle to do better (and sometimes do even worse) than the naive in these cases.

Why might this be? A (partial) answer lies in the markets themselves. In well functioning markets, the market price at any time represents the summation of all information available to the market. It can be thought of as an aggregate market “view” of what the price is, given such “underlying” information. For the next period, assuming relatively moderate changes in the underlying information, we may reasonably expect relatively moderate changes in market prices. In such a case, the naive forecast can be a fairly good short term predictor.

A Simple Example

To illustrate this, lets look at the day-ahead market power price in the Nordic markets. To make things a little simpler, we drop the weekend data, and build a simple naive model to predict the next-weekday’s system spot price:

forecast(t+1) = observed(t)

Thus, for example, the forecast for Thursday is Wednesday’s price, and for Monday is the previous Friday’s price. The predictions for our test dataset (May-August 2021) are shown below.

We can test this against a simple feed forward neural network model, trained on a set of historical price features that exhibit some (auto)correlation with current price. The forecasts from this model for our test data set are given below.

There is very little difference in the forecasts of the two models - indeed, the NN model has essentially learned a naive forecast with occasional small modifications. We can see this in more detail examining a set of forecast metrics for the two models:

This is not an atypical result in time-series forecasting using standardised machine learning - such models that are based on recent historical data and historical data patterns end up learning essentially a simple ARIMA-type model. The naive forecast is of course essentially already a simple autoregressive model, and thus performs fairly similarly to these simple ML alternatives.

This highlights a very common issue with many ML time-series forecasting models (in power markets and elsewhere) that appear fairly accurate, but are in reality offering little more (or even no more) than the naive forecast. And it raises the obvious next question is: how do we beat the naive forecast? We will tackle this issue in our next post.

Última postagem

Tag