fitted.model_mean: Extract fitted values from a fable model

View source: R/mean.R

fitted.model_meanR Documentation

Extract fitted values from a fable model

Description

Extracts the fitted values.

Usage

## S3 method for class 'model_mean'
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(tsibbledata)
vic_elec %>%
  model(avg = MEAN(Demand)) %>%
  fitted()

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