2

python中是否有适合时间序列(分析和预测)的包?

它们包括哪些方法?

R 中有一个包含许多功能的预测包。Python中是否有类似的包?

4

2 回答 2

1

这是一个有趣的问题。

我发现 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 中找到。

于 2012-10-21T08:45:06.500 回答
0

检查pandas包裹。http://pandas.pydata.org/。也许这就是你要找的

于 2012-10-21T08:15:00.560 回答