python中是否有适合时间序列(分析和预测)的包?
它们包括哪些方法?
R 中有一个包含许多功能的预测包。Python中是否有类似的包?
这是一个有趣的问题。
我发现 Python 中有 2 个包:
Pandas and you can use for forecasting:
Regression
Some EMA
See more: http://pandas.pydata.org/
Statmodels you can use for forecasting:
AR
ARMA
VAR
See more: http://statsmodels.sourceforge.net/
但是我不知道是否所有来自 R 的预测包都可以在 Python 中找到。
检查pandas
包裹。http://pandas.pydata.org/。也许这就是你要找的