Forecasting
Time series forecasting is a task that involves using a model to predict future values of a time series based on its past values. The data consists of sequences of values that are recorded at regular intervals over a period of time, such as daily stock prices or monthly weather data. Time series forecasting can be approached using a variety of machine learning techniques, including linear regression, decision trees, and neural networks.
One key difference between time series forecasting and other types of machine learning tasks is the presence of temporal dependencies in the data. In time series data, the value at a particular time point is often influenced by the values that came before it, which means that the order in which the data points are presented is important. This can make time series forecasting more challenging, as the model must take into account the relationships between past and future values in order to make accurate predictions.
One of the most accessible and comprehensive source on forecasting using R is Forecasting: Principles and Practice (FPP3) by Rob J Hyndman and George Athanasopoulos ((Rob J. Hyndman and Athanasopoulos 2021). The book now has the \(3^{rd}\) edition that uses the tsibble
and fable
packages rather than the forecast
package. This brings a better integration to the tidyverse collection of packages. A move from FPP2 to FPP3 brings a move from forecast
to fable
. The main difference is that fable
is designed for tsibble
objects and forecast
is designed for ts
objects 10.
In this section, we will use the tsibble
and fable
packages along with the fpp3
package and cover five main topics: applications with ARIMA models, grid search for ARIMA, time series embedding, forecasting with random forests, and artificial neural network applications, RNN and LSTM. The time-series analysis and forecasting is a very deep and complex subject, which is beyond the scope of this book to cover in detail. FPP3 is free and very accessible even for those without a strong background on time-series forecasting. Therefore, this section assumes that some major concepts, like stationarity, time series decomposition, and exponential smoothing, are already understood by further readings of FPP3.
References
There is a paper, <https://robjhyndman.com/publications/tsibble/), by Wang et al. ((Wang, Cook, and Hyndman 2020b)) describing
tsibble
and the package in more details↩︎