from statsmodels.tsa.holtwinters import SimpleExpSmoothing
x = [1, 2, 4, 8, 10, 100, 10, 80, 270, 10, 50, 590]
model = SimpleExpSmoothing(x)
curFit = model.fit()
print(curFit.forecast(5))
我认为我应该对接下来的5个时间步长做出预测 我得到了数组([598.12025545、598.12025545、598.12025545、598.12025545, 598.12025545])。无论我如何更改x,curFit.forecast中的所有值都相同。为什么?返回相同值的意义是什么?