residuals.croston {fable}R Documentation

Extract residuals from a fable model

Description

Extracts the residuals.

Usage

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

Arguments

object

A model for which forecasts are required.

...

Other arguments passed to methods

Value

A vector of fitted residuals.

Examples

library(tsibble)
sim_poisson <- tsibble(
  time = yearmonth("2012 Dec") + seq_len(24),
  count = rpois(24, lambda = 0.3),
  index = time
)

sim_poisson %>%
  model(CROSTON(count)) %>%
  residuals()

[Package fable version 0.3.4 Index]