start : int, str, or datetime
Zero-indexed observation number at which to start forecasting, ie.,
the first forecast is start. Can also be a date string to
parse or a datetime type.
end : int, str, or datetime
Zero-indexed observation number at which to end forecasting, ie.,
the first forecast is start. Can also be a date string to
parse or a datetime type.
method : string {‘dynamic’, ‘static’}
If method is ‘dynamic’, then fitted values are used in place of
observed ‘endog’ to make forecasts. If ‘static’, observed ‘endog’
are used. Only ‘static’ is currently implemented.
confint : bool, float
Whether to return confidence intervals. If confint == True,
95 % confidence intervals are returned. Else if confint is a
float, then it is assumed to be the alpha value of the confidence
interval. That is confint == .05 returns a 95% confidence
interval, and .10 would return a 90% confidence interval.
Returns :
——- :
predicted values : array
|