ets_estimator: ets estimator

Description Usage Arguments Details Value Examples

View source: R/estimators_forecastors.R

Description

Envelope function that estimates ets model

Usage

1
ets_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 ets model

Details

Envelope function that estimates ets model.

Value

fitted ets 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)))
ets_estimator(train_sample, "y", "")

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