Learn R Programming

fable (version 0.4.0)

residuals.RW: Extract residuals from a fable model

Description

Extracts the residuals.

Usage

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

Value

A vector of fitted residuals.

Arguments

object

A model for which forecasts are required.

...

Other arguments passed to methods

Examples

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

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

Run the code above in your browser using DataLab