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

View source: R/ets.R

components.ETSR Documentation

Extract estimated states from an ETS model.

Description

Extract estimated states from an ETS model.

Usage

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

Arguments

object

An estimated model.

...

Unused.

Value

A fabletools::dable() containing estimated states.

Examples

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

fable documentation built on Sept. 25, 2024, 1:08 a.m.