statsmodels.tsa.exponential_smoothing.ets.ETSModel.smooth

ETSModel.smooth(params, return_raw=False)[source]

Exponential smoothing with given parameters

Parameters
paramsarray_like

Model parameters

return_rawbool, optional

Whether to return only the state space results or the full results object. Default is False.

Returns
resultETSResultsWrapper or tuple

If return_raw=False, returns a ETSResultsWrapper object. Otherwise a tuple of arrays or pandas objects, depending on the format of the endog data.