fitted.croston: Extract fitted values from a fable model

View source: R/croston.R

fitted.crostonR Documentation

Extract fitted values from a fable model

Description

Extracts the fitted values.

Usage

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

Arguments

object

The time series model used to produce the forecasts

...

Additional arguments for forecast model methods.

Value

A vector of fitted values.

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)) %>%
  tidy()

fable documentation built on Sept. 2, 2022, 1:07 a.m.