- .model_type
This is where you will set your engine. It uses
modeltime::exp_smoothing()
under the hood and can take one of the following:
- .recipe_list
You must supply a list of recipes. list(rec_1, rec_2, ...)
- .seasonal_period
A seasonal frequency. Uses "auto" by default.
A character phrase of "auto" or time-based phrase of "2 weeks" can be used
if a date or date-time variable is provided. See Fit Details below.
- .error
The form of the error term: "auto", "additive", or
"multiplicative". If the error is multiplicative, the data must be non-negative.
- .trend
The form of the trend term: "auto", "additive", "multiplicative"
or0 "none".
- .season
The form of the seasonal term: "auto", "additive",
"multiplicative" or "none".
- .damping
Apply damping to a trend: "auto", "damped", or "none".
- .smooth_level
This is often called the "alpha" parameter used as the
base level smoothing factor for exponential smoothing models.
- .smooth_trend
This is often called the "beta" parameter used as the
trend smoothing factor for exponential smoothing models.
- .smooth_seasonal
This is often called the "gamma" parameter used as
the seasonal smoothing factor for exponential smoothing models.