statsmodels.tsa.statespace.exponential_smoothing.ExponentialSmoothingResults.get_forecast¶
- ExponentialSmoothingResults.get_forecast(steps=1, **kwargs)¶
Out-of-sample forecasts and prediction intervals
- Parameters:
- steps
int
,str
,or
datetime
,optional
If an integer, the number of steps to forecast from the end of the sample. Can also be a date string to parse or a datetime type. However, if the dates index does not have a fixed frequency, steps must be an integer. Default
- **kwargs
Additional arguments may required for forecasting beyond the end of the sample. See FilterResults.predict for more details.
- steps
- Returns:
- forecasts
PredictionResults
PredictionResults instance containing out-of-sample forecasts and results including confidence intervals.
- forecasts
See also
forecast
Out-of-sample forecasts.
predict
In-sample predictions and out-of-sample forecasts.
get_prediction
In-sample predictions / out-of-sample forecasts and results including confidence intervals.