How to Detrend Data (With Examples)

Detrending data is the process of removing any linear trend from the data set. This is done so that any analysis done on the data is not biased by the trend. Detrending can be done by subtracting the mean from each value in the data set, using a linear regression model to identify and remove the trend, or by using a mathematical transformation on the data. Examples of detrending methods include seasonal and polynomial detrending.


To “detrend” time series data means to remove an underlying trend in the data. The main reason we would want to do this is to more easily see subtrends in the data that are seasonal or cyclical.

For example, consider the following time series data that represents the total sales for some company during 20 consecutive periods:

Detrend time series data

Clearly the sales is trending upwards over time, but there also appears to be a cyclical or seasonal trend in the data, which can be seen by the tiny “hills” that occur over time.

To gain a better view of this cyclical trend, we can detrend the data. In this case, this would involve removing the overall upward trend over time so that the resulting data represents just the cyclical trend.

Detrending time series data example

There are two common methods used to detrend time series data:

1. Detrend by Differencing

2. Detrend by Model Fitting

This tutorial provides a brief explanation of each method.

Method 1: Detrend by Differencing

One way to detrend time series data is to simply create a new dataset where each observation is the difference between itself and the previous observation.

For example, the following image shows how to use differencing to detrend a data series.

To obtain the first value of the detrended time series data, we calculate 13 – 8 = 5. Then to obtain the next value we calculate 18-13 = 5, and so on.

Detrend time series data by differencing

The following plot shows the original time series data:

Detrend time series data

Detrending time series data example

Notice how it’s much easier to see the seasonal trend in the time series data in this plot because the overall upward trend has been removed.

Method 2: Detrend by Model Fitting

Another way to detrend time series data is to fit a regression model to the data and then calculate the difference between the observed values and the predicted values from the model.

For example, suppose we have the same dataset:

If we fit a to the data, we can obtain a predicted value for each in the dataset.

We can then find the difference between the actual value and the predicted value for each observation. These differences represent the detrended data.

Detrend data by model fitting

If we create a plot of the detrended data, we can visualize the seasonal or cyclical trend in the data much more easily:

Note that we used linear regression in this example, but it’s possible to use a more complex method like if there is more of an exponentially increasing or decreasing trend in the data.

x