Learn R Programming

fable (version 0.4.0)

fitted.ETS: Extract fitted values from a fable model

Description

Extracts the fitted values.

Usage

# S3 method for ETS
fitted(object, ...)

Value

A vector of fitted values.

Arguments

object

A model for which forecasts are required.

...

Other arguments passed to methods

Examples

Run this code
as_tsibble(USAccDeaths) %>%
  model(ets = ETS(log(value) ~ season("A"))) %>%
  fitted()

Run the code above in your browser using DataLab