Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个与测量数据相对应的值向量,我想预测下一个值。我怎样才能做到这一点?我知道卡尔曼滤波器可以做到这一点,但这可能是一种更简单的方法。这是数据图,我想预测下一个值:
尝试指数平滑法,例如双指数平滑法或 Holt-Winters 方法。基本上,您尝试了解数据的趋势。
我在这篇文章中有一些示例python代码。
python
另一方面,如果你知道下划线变量的运动/观察模型,卡尔曼肯定会给你更好的预测,正如@tomasz74 指出的那样。