statsmodels.tsa.forecasting.stl.STLForecastResults¶
- class statsmodels.tsa.forecasting.stl.STLForecastResults(stl, result, model, model_result, endog)[source]¶
Results for forecasting using STL to remove seasonality
- Parameters:¶
- stl
STL The STL instance used to decompose the data.
- result
DecomposeResult The result of applying STL to the data.
- model
Model The time series model used to model the non-seasonal dynamics.
- model_result
Results Model results instance supporting, at a minimum,
forecast.
- stl
- Attributes:¶
modelThe model fit to the additively deseasonalized data
model_resultThe result class from the estimated model
periodThe period of the seasonal component
resultThe result of applying STL to the data
stlThe STL instance used to decompose the time series
Methods
forecast([steps])Out-of-sample forecasts
get_prediction([start, end, dynamic])In-sample prediction and out-of-sample forecasting
summary()Summary of both the STL decomposition and the model fit.
Properties
The model fit to the additively deseasonalized data
The result class from the estimated model
The period of the seasonal component
The result of applying STL to the data
The STL instance used to decompose the time series