forecast (version 7.3)

fitted.nnetar: h-step in-sample forecasts using nnetar models

Description

Returns h-step forecasts for the data used in fitting the nnetar model.

Usage

"fitted"(object, h=1, ...)

Arguments

object
An object of class "nnetar". Usually the result of a call to nnetar.
h
The number of steps to forecast ahead.
...
Other arguments.

Value

See Also

forecast.nnetar.

Examples

Run this code
plot(WWWusage)
lines(fitted(fit), col='red')
lines(fitted(fit, h=2), col='green')
lines(fitted(fit, h=3), col='blue')
legend("topleft", legend=paste("h =",1:3), col=2:4, lty=1)

Run the code above in your browser using DataLab