tbats_estimator: tbats estimator

Description Usage Arguments Details Value Examples

View source: R/estimators_forecastors.R

Description

Envelope function that estimates tbats model

Usage

1
tbats_estimator(train_sample, predicted, options, predictors = "")

Arguments

train_sample

tsibble with train sample

predicted

name of the predicted variable

options

character with options separated by comma not yet supported

predictors

not supported by tbats model

Details

Envelope function that estimates tbats model.

Value

fitted tbats model

Examples

1
2
3
train_sample = tsibble::tsibble(date = lubridate::ymd("2017-01-01") + months(0:99),
    y = arima.sim(n = 100, model = list(ar = 0.7)))
tbats_estimator(train_sample, "y", "")

kassandra-ru/kassandr documentation built on Jan. 1, 2022, 7:39 a.m.