fitted.Arima {forecast} | R Documentation |
Returns one-step forecasts for the data used in fitting the ARIMA model.
fitted.Arima(object,...)
object |
An object of class "Arima ". Usually the result of a call to arima . |
... |
Other arguments. |
An time series of the one-step forecasts.
Rob J Hyndman
fit <- Arima(WWWusage,c(3,1,0)) plot(WWWusage) lines(fitted(fit),col=2)