Learn R Programming

fable (version 0.3.2)

residuals.AR: Extract residuals from a fable model

Description

Extracts the residuals.

Usage

# S3 method for AR
residuals(object, type = c("innovation", "regression"), ...)

Value

A vector of fitted residuals.

Arguments

object

The time series model used to produce the forecasts

type

The type of residuals to extract.

...

Additional arguments for forecast model methods.

Examples

Run this code
as_tsibble(lh) %>%
  model(AR(value ~ order(3))) %>%
  residuals()

Run the code above in your browser using DataLab