fitted.GLARMA {fableCount}R Documentation

Extract fitted values from a fable model

Description

Extracts the fitted values.

Usage

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

Arguments

object

A model for which forecasts are required.

...

Other arguments passed to methods

Value

A vector of fitted values.

Examples

tsibbledata::aus_production |>
  fabletools::model(manual_gla = GLARMA(Beer ~ pq(1,0))) |>
  dplyr::select(manual_gla) |>
  fitted()

[Package fableCount version 0.1.0 Index]