Learn R Programming

fable (version 0.4.0)

residuals.ARIMA: Extract residuals from a fable model

Description

Extracts the residuals.

Usage

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

Value

A vector of fitted residuals.

Arguments

object

A model for which forecasts are required.

type

The type of residuals to extract.

...

Other arguments passed to methods

Examples

Run this code
USAccDeaths %>%
  as_tsibble() %>%
  model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>%
  residuals()

Run the code above in your browser using DataLab