Learn R Programming

RGAP (version 0.1.1)

hpfilter: HP filter

Description

Applies the Hodrick Prescott Filter.

Usage

hpfilter(x, lambda)

Value

A univariate time series object containing the trend of the original time series.

Arguments

x

A univariate time series object.

lambda

The smoothing parameter.

Examples

Run this code
# get data for France
data("gap")
country <- "France"
tsList <- amecoData2input(gap[[country]], alpha = 0.65)
hp <- hpfilter(x = tsList$gdp, lambda = 6.25)

Run the code above in your browser using DataLab