fitted.Arima {TSA} | R Documentation |
Fitted values of an arima model.
Description
Computes the fitted values of an arima model.
Usage
## S3 method for class 'Arima'
fitted(object,...)
Arguments
object |
a fitted model from the arima function. |
... |
other arguments; not used here but kept to be consistent with the generic method |
Value
fitted values
Author(s)
Kung-Sik Chan
See Also
Examples
data(hare)
hare.m1=arima(sqrt(hare),order=c(3,0,0))
fitted(hare.m1)
[Package TSA version 1.3.1 Index]