Learn R Programming

fable (version 0.4.0)

components.ETS: Extract estimated states from an ETS model.

Description

Extract estimated states from an ETS model.

Usage

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

Value

A fabletools::dable() containing estimated states.

Arguments

object

An estimated model.

...

Unused.

Examples

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

Run the code above in your browser using DataLab