Learn R Programming

tsfgrnn (version 1.0.5)

autoplot.grnnForecast: Create a ggplot object from a grnnForecast object

Description

It uses an object of class grnnForecast to create a ggplot object that plots a time series and its forecast using GRNN regression.

Usage

# S3 method for grnnForecast
autoplot(object, ...)

Value

The ggplot object representing a plotting with the forecast.

Arguments

object

An object of class grnnForecast.

...

additional parameter, see details.

Details

Commonly used parameters are:

  • highlight. A character string indicating what elements should be highlighted. Possible values are "none" and "points". The default value is "none".

Examples

Run this code
pred <- grnn_forecasting(USAccDeaths, h = 12, lags = 1:12, sigma = 50)
library(ggplot2)
autoplot(pred)

Run the code above in your browser using DataLab