Concept | Objectives of time series analysis#

Watch the video

Knowing the objectives of a time series analysis is essential for choosing the right kinds of strategies to implement. Objectives can be:

  • Descriptive

  • Explanatory

  • Forecasting

  • Control

Descriptive#

A descriptive analysis is best served by plotting the time series data. Plotting provides a “high level“ overview of the time series and its main components: the trend, seasonality, cycle, and random variations.

For example, by plotting data on the number of domestic airline passengers in the United States from the U.S. International Air Passenger and Freight Statistics Report, we observe a seasonal pattern and an upward trend in the number of passengers over the years.

../../_images/ts_plot_airline.png

Plotting can also reveal any points in the data that appear inconsistent with the data pattern, that is, outliers.

Additionally, plotting can reveal turning points in the data, which can be useful when deciding on forecasting strategies. For instance, we may have to fit different models to portions of the data that occur before and after turning points.

Explanatory#

Suppose we want to explain the behavior of a multivariate time series data. We can use the changes in one variable to explain another variable, and thereby understand how the two variables are related.

Additionally, we can explain the behavior of a time series by training models on its components.

Forecasting#

Forecasting uses the observed values of a time series with a model to predict future time series values.

Several forecasting techniques are available for use with time series data. One example is the ARIMA model, which we’ve used with the airline dataset here to forecast the number of passengers for the upcoming years.

../../_images/ts_plot_airline_forecast.png

Control#

The goal of an analysis can also be to control a physical system or business outcome.

For example, an airline company may want to increase its profit by increasing the number of passengers who travel in a given period. Suppose a forecast of passengers shows a decline in travel for the said period. The airline may attempt to control this outcome by offering lower ticket prices or airline rewards, which could lead to an increase in its profit.