Releases: Nixtla/statsforecast
Releases · Nixtla/statsforecast
v0.5.3
AutoARIMA predict_in_sample
- Added
predict_in_sample
method forAutoARIMA
. - Users can now compute in sample forecasts including prediction intervals.
AutoARIMA class
- Now: Good Ol' sklearn syntax with
model = AutoARIMA(); model.fit(y); model.predict(10)
. - Bug fixes.
Prediction intervals for AutoARIMA
Notable changes
- Inclusion of
prediction intervals
forauto_arima
. statsforecast
is now installable fromconda-forge
(conda install -c conda-forecast statsforecast
, thanks to @sugatoray).
Exogenous variables for AutoARIMA
Notable changes
- Inclusion of
exogenous variables
forauto_arima
. - The
StatsForecast
class now handlesexogenous variables
. - This release allows developers to include more models that use
exogenous variables
. - Bug fixes.