fitted.ETS {fable} | R Documentation |
Extracts the fitted values.
## S3 method for class 'ETS'
fitted(object, ...)
object |
A model for which forecasts are required. |
... |
Other arguments passed to methods |
A vector of fitted values.
as_tsibble(USAccDeaths) %>%
model(ets = ETS(log(value) ~ season("A"))) %>%
fitted()