Low-Level Exponential Smoothing function for translating modeltime to forecast
ets_fit_impl(
x,
y,
period = "auto",
error = "auto",
trend = "auto",
season = "auto",
damping = "auto",
alpha = NULL,
beta = NULL,
gamma = NULL,
...
)
A dataframe of xreg (exogenous regressors)
A numeric vector of values to fit
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.
The form of the error term: "auto", "additive", or "multiplicative". If the error is multiplicative, the data must be non-negative.
The form of the trend term: "auto", "additive", "multiplicative" or "none".
The form of the seasonal term: "auto", "additive", "multiplicative" or "none".
Apply damping to a trend: "auto", "damped", or "none".
Value of alpha. If NULL, it is estimated.
Value of beta. If NULL, it is estimated.
Value of gamma. If NULL, it is estimated.
Additional arguments passed to forecast::ets