Is your feature request related to a problem? Please describe.
R’s smooth package has a multiple seasonal arima (msarima) state space implementation that i have been hoping to reproduce in Python. Statsmodels, pmdarima, darts and sktime all limit the user to one seasonality. To add a second, often we are forced to manually create a Fourier Regressor and add as an exogenous variable (and still not as accurate!).
Describe the solution you'd like
Implement a msarima model in Python. Very happy to support development. Suggest using smooth’s implementation as a starting point since already pretty fast (state space design cuts down on size of transition matrix).
Describe alternatives you've considered
Besides adding second seasonality via exogenous Fourier terms, I’ve also tried using a double seasonal formulation of exponential smoothing described in a research paper by Taylor 2003 (https://www.jstor.org/stable/4101650) for load forecasting. This works pretty well but double seasonal arima should beat it.
Is your feature request related to a problem? Please describe. R’s smooth package has a multiple seasonal arima (msarima) state space implementation that i have been hoping to reproduce in Python. Statsmodels, pmdarima, darts and sktime all limit the user to one seasonality. To add a second, often we are forced to manually create a Fourier Regressor and add as an exogenous variable (and still not as accurate!).
Describe the solution you'd like Implement a msarima model in Python. Very happy to support development. Suggest using smooth’s implementation as a starting point since already pretty fast (state space design cuts down on size of transition matrix).
Describe alternatives you've considered Besides adding second seasonality via exogenous Fourier terms, I’ve also tried using a double seasonal formulation of exponential smoothing described in a research paper by Taylor 2003 (https://www.jstor.org/stable/4101650) for load forecasting. This works pretty well but double seasonal arima should beat it.