What happened + What you expected to happen
Hi!
I’m encountering an error when using the AutoARIMA model. While searching for a solution, I noticed that a specific parameter is mentioned in the library’s documentation. In this context, is "period" the correct parameter to use?
Thank you.
<3
Versions / Dependencies
StatsForecast 2.0.1
Reproducible example
mdl_arima = [
AutoARIMA(
d = 1,
max_p = 6,
season_length = 365,
stationary = True,
)
]
sf = StatsForecast(models=mdl_arima, freq='D')
sf.fit(df=train_diff)
Issue Severity
None