简体   繁体   English

如何使用三重指数平滑来预测未来?

[英]How to use Triple Exponential Smoothing to forecast into future?

I want to use Holt-Winters method to forecast into the future.我想使用 Holt-Winters 方法来预测未来。 To predict the current values for IdCount with Exponential Smoothing I used this code:为了使用指数平滑预测IdCount的当前值,我使用了以下代码:

df['TES_mul'] = ExponentialSmoothing(df['IdCount'],trend='add',seasonal='add',seasonal_periods=9).fit().fittedvalues

This works out fine.这很好。 Now, I want to "use" Triple Exponential Smmothing to predict future values.现在,我想“使用”Triple Exponential Smmothing 来预测未来值。

What do I have to do here?我必须在这里做什么?

"Triple Exponential Smoothing" is also known as the Hold-Winters method. “三重指数平滑”也称为 Hold-Winters 方法。 Please take a look the documentation of: from statsmodels.tsa.holtwinters import ExponentialSmoothing请查看以下文档: from statsmodels.tsa.holtwinters import ExponentialSmoothing

for more details see 有关更多详细信息,请参阅

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用指数平滑来平滑python中的时间序列? - How to use exponential smoothing to smooth the timeseries in python? 如何将指数平滑模型预测值获取到 POWER BI/POWER Query 数据集? - How to get Exponential Smoothing model forecast values to POWER BI/POWER Query dataset? 使用 Python 中 statsmodels 的 ExponentialSmoothing 进行三重指数平滑预测 - Predict with Triple Exponential Smoothing using ExponentialSmoothing of statsmodels in python 如何使用 Keras RNN 模型预测未来的日期或事件? - How to use a Keras RNN model to forecast for future dates or events? 如何使用 Python 手动实现指数平滑? - How to implement exponential smoothing manually with Python? 如何创建“指数平滑”变量(难) - How to create “exponential smoothing” variables (hard one) 使用Holt-winters,ARIMA,指数平滑等来预测Python中的时间序列值 - Using Holt-winters, ARIMA, exponential smoothing, etc. to forecast time series value in Python 为什么 statsmodels 中的指数平滑会为时间序列预测返回相同的值? - Why does exponential smoothing in statsmodels return identical values for a time series forecast? 最小化指数平滑中的alpha - minimize alpha in exponential smoothing 指数平滑平均值 - Exponential Smoothing Average
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM