Learn R Programming

deseats (version 1.1.0)

autoplot,hfilter-method: ggplot2 Plot Method for the Results of a Hamilton Filter

Description

Visualize the results of an applied Hamilton filter in the style of ggplot2.

Usage

# S4 method for hfilter
autoplot(object, which = NULL, ...)

Value

This method returns a ggplot2 plot object, i.e. an object of classes "gg" and "ggplot".

Arguments

object

an object of class "hfilter", as returned by the function hamilton_filter.

which

either a string or a number can be entered to select a plot type from the function call; options are (1) a facet plot of the components, (2) the observed time series, (3) the observations together with the fitted values, and (4) the residuals; for which = NULL, the plot type can be selected interactively in the console.

...

currently without use, implemented for compatibility.

Author

  • Dominik Schulz (Research Assistant) (Department of Economics, Paderborn University),
    Author and Package Creator

Examples

Run this code
est <- hamilton_filter(log(EXPENDITURES))
autoplot(est, which = 3, col = c(1, 6))
autoplot(est, which = 4)

Run the code above in your browser using DataLab