Extracts the fitted values.
# S3 method for ETS fitted(object, ...)
object | The time series model used to produce the forecasts |
---|---|
... | Additional arguments for forecast model methods. |
A vector of fitted values.
#> # A tsibble: 72 x 3 [1M] #> # Key: .model [1] #> .model index .fitted #> <chr> <mth> <dbl> #> 1 ets 1973 Jan 8966. #> 2 ets 1973 Feb 8115. #> 3 ets 1973 Mar 8976. #> 4 ets 1973 Apr 9182. #> 5 ets 1973 May 10076. #> 6 ets 1973 Jun 10537. #> 7 ets 1973 Jul 11626. #> 8 ets 1973 Aug 10652. #> 9 ets 1973 Sep 9525. #> 10 ets 1973 Oct 9927. #> # … with 62 more rows