residuals.RW: Extract residuals from a fable model

View source: R/lagwalk.R

residuals.RWR Documentation

Extract residuals from a fable model

Description

Extracts the residuals.

Usage

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

Arguments

object

A model for which forecasts are required.

...

Other arguments passed to methods

Value

A vector of fitted residuals.

Examples

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

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

fable documentation built on April 12, 2025, 1:51 a.m.