Python Obtain confidence intervals tatsmodels.tsa.holtwinters

Viewed 15

I have a Holt Winter model, I need to obtain the confidence intervals.

I only know this

preds = best_model.forecast(2) 
best_model.summary()
1 Answers

Maybe the method .conf_int() ?

Related