autoplot.grnnForecast {tsfgrnn}R Documentation

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 class 'grnnForecast'
autoplot(object, ...)

Arguments

object

An object of class grnnForecast.

...

additional parameter, see details.

Details

Commonly used parameters are:

Value

The ggplot object representing a plotting with the forecast.

Examples

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

[Package tsfgrnn version 1.0.5 Index]