This message was deleted.
# general
s
This message was deleted.
m
Thanks a lot! You can do that using the order parameter of the Arima model. https://nixtla.github.io/statsforecast/src/core/models.html#arima-family
# ARIMA Model
arima = ARIMA(order=(1, 1, 1), season_length=1)
Then
arima = arima.fit(y=df["y"].values)
and
y_hat_dict = arima.predict(h=6)
l
Fantastic! Thank you! Is there a similar argument for the other available models such as holt winters? I see an "Alpha" argument for exponential smoothing but I don't see a Beta argument for Holt's method.
m
@Mariana Menchero?
m
Hi @Lewis Livingston there's no beta argument because this implementation of Holt's method is the corresponding best ETS model with either additive or multiplicative errors. Hence, the class only takes the following arguments:
Holt (season_length:int=1, error_type:str='A', alias:str='Holt')
same for Holt-Winters