model_sum.DSHW: Summarize a DSHW model

View source: R/methods-fable.R

model_sum.DSHWR Documentation

Summarize a DSHW model

Description

Return a short model label for a fitted DSHW model.

Usage

## S3 method for class 'DSHW'
model_sum(x)

Arguments

x

A fitted DSHW model object.

Value

A character string.

See Also

Other DSHW: DSHW(), fitted.DSHW(), forecast.DSHW(), residuals.DSHW()

Examples


library(dplyr)
library(tsibble)
library(fabletools)

train_frame <- elec_load |>
  filter(bidding_zone == "DE") |>
  slice_head(n = 24 * 28) |>
  as_tsibble(index = time)

model_frame <- train_frame |>
  model("DSHW" = DSHW(value, periods = c(24, 168)))

model_frame


tscv documentation built on May 13, 2026, 9:07 a.m.