statsmodels.tsa.forecasting.stl.STLForecastResults¶
-
class
statsmodels.tsa.forecasting.stl.
STLForecastResults
(stl: statsmodels.tsa._stl.STL, result: statsmodels.tsa.seasonal.DecomposeResult, 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
model
The model fit to the additively deseasonalized data
model_result
The result class from the estimated model
period
The period of the seasonal component
result
The result of applying STL to the data
stl
The 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.
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