Learn R Programming

fable (version 0.4.0)

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

A model for which forecasts are required.

...

Other arguments passed to 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