fitted.ARIMA {fable} | R Documentation |
Extract fitted values from a fable model
Description
Extracts the fitted values.
Usage
## S3 method for class 'ARIMA'
fitted(object, ...)
Arguments
object |
A model for which forecasts are required. |
... |
Other arguments passed to methods |
Value
A vector of fitted values.
Examples
USAccDeaths %>%
as_tsibble() %>%
model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>%
fitted()
[Package fable version 0.3.4 Index]