fitted.RW: Extract fitted values from a fable model

View source: R/lagwalk.R

fitted.RWR Documentation

Extract fitted values from a fable model

Description

Extracts the fitted values.

Usage

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

Arguments

object

The time series model used to produce the forecasts

...

Additional arguments for forecast model methods.

Value

A vector of fitted values.

Examples

as_tsibble(Nile) %>%
  model(NAIVE(value)) %>%
  fitted()

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

fable documentation built on Sept. 2, 2022, 1:07 a.m.