ARIMA:如何将Int64Index类型的行索引(顺序索引)转换为DatetimeIndex?

时间:2018-04-12 14:33:01

标签: python pandas time-series statsmodels arima

statsmodel对ARIMA模型的要求,我需要将pandas系列ts转换为时间序列,即具有od DatetimeIndex类型的行索引或statsmodel ARIMA可接受的系列。

我尝试执行以下操作:

ts.index = pandas.DatetimeIndex(ts.index)

但我收到以下错误:

TypeError: cannot convert Int64Index->DatetimeIndex

这只是为了满足statsmodel的形式。只要维持原始顺序次序,行索引的确切内容就无关紧要了。

以下是ts的内容:

ts.head()

    0           1
0   -0.801552   1.0
1   -0.997606   2.0
2   -3.659062   3.0
3   -1.193043   4.0
4   -2.858001   5.0

请帮我解决问题。谢谢!

0 个答案:

没有答案