Closed PeterPirog closed 12 months ago
Is possible to add STL and MSTL forecast models in darts? These models are very useful to find trend and seasonality for univariate time series. STL is for single seasonality and MSTL is for multiple seasonalities.
STL decomposition with ARIMA model can be used for forecasting
In some tasks is important to separate trend and seasonality to detect general direction of the process.
Hi @PeterPirog,
STL and MSTL are already implemented and accessible in the extract_trend_and_seasonality() method (documentation).
extract_trend_and_seasonality()
@madtoinou , Thank You very much.
Is possible to add STL and MSTL forecast models in darts? These models are very useful to find trend and seasonality for univariate time series. STL is for single seasonality and MSTL is for multiple seasonalities.
STL decomposition with ARIMA model can be used for forecasting
In some tasks is important to separate trend and seasonality to detect general direction of the process.