Important Update
The Guide Feature will be discontinued after December 15th, 2023. Until then, you can continue to access and refer to the existing guides.
Author avatar

Deepika Singh

Time Series Forecasting Using R

Deepika Singh

  • Jul 12, 2019
  • 16 Min read
  • 123,330 Views
  • Jul 12, 2019
  • 16 Min read
  • 123,330 Views
Data
R

Introduction

In this guide, you will learn how to implement the following time series forecasting techniques using the statistical programming language 'R': 1. Naive Method 2. Simple Exponential Smoothing 3. Holt's Trend Method 4. ARIMA 5. TBATS

We will begin by exploring the data.

Problem Statement

Unemployment is a major socio-economic and political issue for any country and, hence, managing it is a chief task for any government. In this guide, we will try to forecast the unemployment levels for a twelve-month period. The data used in this guide was produced from US economic time series data available from the Federal Reserve Economic Data. The data contains 574 rows and 6 variables, as described below:

  1. date - represents the first date of every month starting from January 1968.
  2. psavert - personal savings rate.
  3. pce - personal consumption expenditures, in billions of dollars.
  4. uempmed - median duration of unemployment, in weeks.
  5. pop - total population, in thousands.
  6. unemploy- number of unemployed in thousands (dependent variable).

Even though we have six variables, the focus will be on the 'date' and 'unemploy' columns, as the focus is on univariate time series forecasting.

Loading the Required Libraries

1library(readr)
2library(ggplot2)
3library(forecast)
4library(fpp2)
5library(TTR)
6library(dplyr)
{r}

Reading the Data

The first line of code below reads in the data, while the second line prints the overview of the data.

1dat <- read_csv("timeseriesdata.csv")
2glimpse(dat)
{r}

Output:

1Observations: 564
2Variables: 7
3$ date 	<chr> "01-01-1968", "01-02-1968", "01-03-1968", "01-04-1968...
4$ pce  	<dbl> 531.5, 534.2, 544.9, 544.6, 550.4, 556.8, 563.8, 567....
5$ pop  	<int> 199808, 199920, 200056, 200208, 200361, 200536, 20070...
6$ psavert  <dbl> 11.7, 12.2, 11.6, 12.2, 12.0, 11.6, 10.6, 10.4, 10.4,...
7$ uempmed  <dbl> 5.1, 4.5, 4.1, 4.6, 4.4, 4.4, 4.5, 4.2, 4.6, 4.8, 4.4...
8$ unemploy <int> 2878, 3001, 2877, 2709, 2740, 2938, 2883, 2768, 2686,...
9$ Class	<chr> "Train", "Train", "Train", "Train", "Train", "Train",...

Data Partitioning

We will be creating the training and the test data sets for model validation. The first couple of lines of code below perform this task by using the 'Class' variable that already has labels of Train and Test.

The third line of code prints the number of rows in the training and the test data. Note that the test data set has 12 rows because we will be building the model to forecast for 12 months ahead.

1dat_train = subset(dat, Class == 'Train')
2dat_test = subset(dat, Class == 'Test')
3 
4nrow(dat_train); nrow(dat_test)
{r}

Output:

1[1] 552
2[1] 12

Preparing the Time Series Object

To run the forecasting models in 'R', we need to convert the data into a time series object which is done in the first line of code below. The 'start' and 'end' argument specifies the time of the first and the last observation, respectively. The argument 'frequency' specifies the number of observations per unit of time.

We will also create a utility function for calculating Mean Absolute Percentage Error (or MAPE), which will be used to evaluate the performance of the forecasting models. The lower the MAPE value, the better the forecasting model. This is done in the second to fourth lines of code.

1dat_ts <- ts(dat_train[, 6], start = c(1968, 1), end = c(2013, 12), frequency = 12)
2 
3#lines 2 to 4
4mape <- function(actual,pred){
5  mape <- mean(abs((actual - pred)/actual))*100
6  return (mape)
7}
{r}

With the data and the mape function prepared, we move to the forecasting techniques in the subsequent sections.

Naive Forecasting Method

The simplest forecasting method is to use the most recent observation as the forecast for the next observation. This is called a naive forecast and can be implemented using the 'naive()' function. This method may not be the best forecasting technique, but it often provides a useful benchmark for other, more advanced forecasting methods.

The first line of code below reads in the time series object 'dat_ts' and creates the naive forecasting model. The second argument 'h' specifies the number of values you want to forecast which is set to 12, in our case. The second line prints the summary of the model as well as the forecasted value for the next 12 months.

1naive_mod <- naive(dat_ts, h = 12)
2summary(naive_mod)
{r}

Output:

1Forecast method: Naive method
2 
3Model Information:
4Call: naive(y = dat_ts, h = 12)
5 
6Residual sd: 214.9766
7 
8Error measures:
9                	ME 	RMSE      MAE   	MPE 	MAPE      MASE
10 Training set 13.60799 214.9766 161.1361 0.1931667 2.148826 0.1690101
11              	ACF1
12 Training set 0.201558
13 
14Forecasts:
15     	Point Forecast 	Lo 80    Hi 80	Lo 95	Hi 95
16Jan 2014      	10376 10100.496 10651.50 9954.654 10797.35
17Feb 2014      	10376  9986.379 10765.62 9780.126 10971.87
18Mar 2014      	10376  9898.814 10853.19 9646.206 11105.79
19Apr 2014      	10376  9824.993 10927.01 9533.307 11218.69
20May 2014      	10376  9759.955 10992.04 9433.841 11318.16
21Jun 2014      	10376  9701.157 11050.84 9343.916 11408.08
22Jul 2014      	10376  9647.086 11104.91 9261.222 11490.78
23Aug 2014      	10376  9596.758 11155.24 9184.252 11567.75
24Sep 2014      	10376  9549.489 11202.51 9111.961 11640.04
25Oct 2014      	10376  9504.781 11247.22 9043.585 11708.41
26Nov 2014      	10376  9462.258 11289.74 8978.552 11773.45
27Dec 2014      	10376  9421.627 11330.37 8916.413 11835.59

The output above shows that the naive method predicts the same value for the entire forecasting horizon. Let us now use the forecasted value and evaluate the model performance on the test data.

The first line of code below adds a new variable, naive, in the test data which contains the forecasted value obtained from the naive method. The second line uses the mape function to produce the MAPE error on the test data, which comes out to be 8.5 percent.

1dat_test$naive = 10376
2mape(dat_test$unemploy, dat_test$naive)  ## 8.5%
{r}

Output:

1[1] 8.486551

Simple Exponential Smoothing

Exponential Smoothing methods are an extension of the naive method, wherein the forecasts are produced using weighted averages of past observations, with the weights decaying exponentially as the observations get older. In simple words, higher weights are given to the more recent observations and vice versa. The value of the smoothing parameter for the level is decided by the parameter 'alpha'.

The first line of code below reads in the time series object 'dat_ts' and creates the simple exponential smoothing model. The second line prints the summary of the model as well as the forecasted value for the next 12 months.

1se_model <- ses(dat_ts, h = 12)
2summary(se_model)
{r}

Output:

1Forecast method: Simple exponential smoothing
2 
3Model Information:
4Simple exponential smoothing
5 
6Call:
7ses(y = dat_ts, h = 12)
8 
9Smoothing parameters: alpha = 0.9999
10 
11Initial states:
12   l = 2849.6943
13   sigma:  215.1798
14 
15  	AIC     AICc  	BIC
16 9419.182 9419.226 9432.123
17 
18Error measures:
19                	ME 	RMSE      MAE   	MPE 	MAPE      MASE
20 Training set 13.63606 214.7896 160.8971 0.1946177 2.146727 0.1687594
21               	ACF1
22 Training set 0.2017391
23 
24Forecasts:
25      	Point Forecast 	Lo 80    Hi 80	Lo 95	Hi 95
26Jan 2014   	10376.04 10100.280 10651.81 9954.299 10797.79
27Feb 2014   	10376.04  9986.074 10766.01 9779.637 10972.45
28Mar 2014       10376.04  9898.438 10853.65 9645.609 11106.48
29Apr 2014   	10376.04  9824.557 10927.53 9532.618 11219.47
30May 2014   	10376.04  9759.466 10992.62 9433.070 11319.02
31Jun 2014   	10376.04  9700.619 11051.47 9343.071 11409.02
32Jul 2014   	10376.04  9646.504 11105.58 9260.308 11491.78
33Aug 2014   	10376.04  9596.134 11155.95 9183.274 11568.81
34Sep 2014   	10376.04  9548.826 11203.26 9110.923 11641.17
35Oct 2014   	10376.04  9504.080 11248.01 9042.490 11709.60
36Nov 2014   	10376.04  9461.521 11290.57 8977.402 11774.69
37Dec 2014   	10376.04  9420.857 11331.23 8915.212 11836.88
38 

The output above shows that the simple exponential smoothing has the same value for all the forecasts. Because the alpha value is close to 1, the forecasts are closer to the most recent observations. Let us now evaluate the model performance on the test data.

The first line of code below stores the output of the model in a data frame. The second line adds a new variable, simplexp, in the test data which contains the forecasted value from the simple exponential model. The third line uses the mape function to produce the MAPE error on the test data, which comes out to be 8.5 percent.

1df_fc = as.data.frame(se_model)
2dat_test$simplexp = df_fc$`Point Forecast`
3mape(dat_test$unemploy, dat_test$simplexp) 
{r}

Output:

1[1] 8.486869

Holt's Trend Method

This is an extension of the simple exponential smoothing method which considers the trend component while generating forecasts. This method involves two smoothing equations, one for the level and one for the trend component.

The first line of code below creates the holt's winter model and stores it in an object 'holt_model'. The second line prints the summary and the forecasts for the next 12 months.

1holt_model <- holt(dat_ts, h = 12)
2summary(holt_model)
{r}

Output:

1Forecast method: Holt's method
2 
3Model Information:
4Holt's method
5 
6Call: holt(y = dat_ts, h = 12)
7 
8Smoothing parameters: alpha = 0.8743; beta = 0.2251
9 
10Initial states:
11 	l = 2941.2241
12 	b = -0.9146
13 
14sigma:  200.7121
15 	AIC     AICc  	BIC
16 9344.330 9344.440 9365.898
17 
18Error measures:
19              	ME 	RMSE      MAE    	MPE 	MAPE    MASE
20Training set -1.775468 199.9836 152.9176 0.04058417 2.056684 0.16039
21                	ACF1
22Training set -0.001011626
23 
24Forecasts:
25    	 Point Forecast	Lo 80     Hi 80	Lo 95	Hi 95
26Jan 2014  	10194.656 9937.433 10451.879 9801.267 10588.04
27Feb 2014   	9973.102 9590.814 10355.390 9388.443 10557.76
28Mar 2014   	9751.549 9239.463 10263.634 8968.381 10534.72
29Apr 2014   	9529.995 8881.048 10178.943 8537.515 10522.48
30May 2014   	9308.442 8514.997 10101.887 8094.972 10521.91
31Jun 2014   	9086.888 8141.265 10032.512 7640.682 10533.10
32Jul 2014   	8865.335 7759.990  9970.680 7174.856 10555.81
33Aug 2014   	8643.782 7371.378  9916.185 6697.808 10589.76
34Sep 2014   	8422.228 6975.652  9868.804 6209.881 10634.58
35Oct 2014   	8200.675 6573.036  9828.313 5711.416 10689.93
36Nov 2014   	7979.121 6163.744  9794.498 5202.741 10755.50
37Dec 2014   	7757.568 5747.979  9767.157 4684.167 10830.97

The output above shows that the MAPE for the training data is 2.1 percent. Let us now evaluate the model performance on the test data, which is done in the lines of code below. The MAPE error on the test data comes out to be 6.6 percent, which is an improvement over the previous models.

1df_holt = as.data.frame(holt_model)
2dat_test$holt = df_holt$`Point Forecast`
3mape(dat_test$unemploy, dat_test$holt) 
{r}

Output:

1[1] 6.597904

ARIMA

ARIMA modeling is one of the most popular approaches to time series forecasting. While exponential smoothing models are based on a description of the trend and seasonality in the data, ARIMA models aim to describe the autocorrelations in the data.

The ‘auto.arima()’ function in 'R' is used to build ARIMA models by using a variation of the Hyndman-Khandakar algorithm, which combines unit root tests, minimisation of the AICc, and MLE to obtain an ARIMA model.

The first line of code below creates the ARIMA model and stores it in an object 'arima_model'. The second line prints the summary and the forecasts for the next 12 months.

1arima_model <- auto.arima(dat_ts)
2summary(arima_model)
{r}

Output:

1Series: dat_ts
2ARIMA(1,1,2)(0,0,2)[12]
3 
4Coefficients:
5      	ar1  	ma1     ma2 	sma1 	sma2
6   	0.9277  -0.8832  0.1526  -0.2287  -0.2401
7s.e.  0.0248   0.0495  0.0446   0.0431   0.0392
8 
9sigma^2 estimated as 35701:  log likelihood=-3668.8
10AIC=7349.59   AICc=7349.75   BIC=7375.46
11 
12Training set error measures:
13                	ME 	RMSE      MAE   	MPE 	MAPE     MASE
14Training set 6.377816 187.9162 143.4292 0.1084702 1.940315 0.150438
15           	      ACF1
16Training set 0.005512865

The output above shows that the MAPE for the training data is 1.94 percent. Let us now evaluate the model performance on the test data, which is done in the lines of code below. The MAPE error on the test data comes out to be 2.1 percent, which is an improvement over all the previous models.

1fore_arima = forecast::forecast(arima_model, h=12)
2df_arima = as.data.frame(fore_arima)
3dat_test$arima = df_arima$`Point Forecast`
4mape(dat_test$unemploy, dat_test$arima)  ## 2.1%
{r}

Output:

1[1] 2.063779

TBATS

The TBATS model combines several components of the already discussed techniques in this guide, making them a very good choice for forecasting.

It constitutes the following elements:

  • T: Trigonometric terms for seasonality
  • B: Box-Cox transformations for heterogeneity
  • A: ARMA errors for short-term dynamics
  • T: Trend
  • S: Seasonal (including multiple and non-integer periods)

The first line of code below creates the TBATS model and stores it in an object 'model_tbats'. The second line prints the summary and the forecasts for the next 12 months.

1model_tbats <- tbats(dat_ts)
2summary(model_tbats)
{r}

Output:

1\##               	Length Class  Mode    
2\## lambda           	1   -none- numeric 
3\## alpha            	1   -none- numeric 
4\## beta             	1   -none- numeric 
5\## damping.parameter	1   -none- numeric 
6\## gamma.values     	0   -none- NULL 	
7\## ar.coefficients  	0   -none- NULL 	
8\## ma.coefficients  	0   -none- NULL 	
9\## likelihood       	1   -none- numeric 
10\## optim.return.code	1   -none- numeric 
11\## variance         	1   -none- numeric 
12\## AIC              	1   -none- numeric 
13\## parameters       	2   -none- list 	
14\## seed.states          2   -none- numeric 
15\## fitted.values  	552   ts     numeric 
16\## errors         	552   ts     numeric 
17\## x             	1104   -none- numeric 
18\## seasonal.periods 	0   -none- NULL 	
19\## y              	552   ts     numeric 
20\## call             	2   -none- call 	
21\## series           	1   -none- character
22\## method           	1   -none- character
23 

Let us now evaluate the model performance on the test data, which is done in the lines of code below. The MAPE error on the test data comes out to be 2.2 percent, which is close to the performance of the ARIMA model.

1for_tbats <- forecast::forecast(model_tbats, h = 12)
2df_tbats = as.data.frame(for_tbats)
3dat_test$tbats = df_tbats$`Point Forecast`
4mape(dat_test$unemploy, dat_test$tbats) 
{r}

Output:

1[1] 2.250596

Conclusion

In this guide, you have learned about several forecasting techniques using 'R'. The performance of the models on the test data is summarized below:

  1. Naive Method: MAPE of 8.5 percent
  2. Simple Exponential Smoothing: MAPE of 8.5 percent
  3. Holt's Trend Method: MAPE of 6.6 percent
  4. ARIMA: MAPE of 2.1 percent
  5. TBATS: MAPE of 2.2 percent

The Naive and Simple Exponential Smoothing models did well by achieving a lower MAPE of 8.5 percent. All the other models outperformed them by producing lower MAPE. However, ARIMA and TBATS model emerge as the winner basis their performance on the test data with MAPE close to 2.1 percent.