Learn R Programming

fable (version 0.3.2)

fitted.RW: Extract fitted values from a fable model

Description

Extracts the fitted values.

Usage

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

Value

A vector of fitted values.

Arguments

object

The time series model used to produce the forecasts

...

Additional arguments for forecast model methods.

Examples

Run this code
as_tsibble(Nile) %>%
  model(NAIVE(value)) %>%
  fitted()

library(tsibbledata)
aus_production %>%
  model(snaive = SNAIVE(Beer ~ lag("year"))) %>%
  fitted()

Run the code above in your browser using DataLab