View source: R/methods-fable.R
| model_sum.TBATS | R Documentation |
Return a short model label for a fitted TBATS model.
## S3 method for class 'TBATS'
model_sum(x)
x |
A fitted |
A character string.
Other TBATS:
TBATS(),
fitted.TBATS(),
forecast.TBATS(),
residuals.TBATS()
library(dplyr)
library(tsibble)
library(fabletools)
train_frame <- elec_price |>
filter(bidding_zone == "DE") |>
slice_head(n = 24 * 21) |>
as_tsibble(index = time)
model_frame <- train_frame |>
model("TBATS" = TBATS(value, periods = c(24, 168)))
model_frame
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.