'module'对象在python中没有属性'date_range'

时间:2015-01-30 02:01:21

标签: python pandas

我正在学习Python中的pandas.Below是我在Terminal中的代码:

import pandas as pd
dates = pd.date_range('20130101', periods=6)

然后我收到这条消息:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'date_range'

如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

你找不到date_range,因为你正在使用pandas版本0.7.0,它在pandas时间非常老(2012年2月9日) - 目前的稳定版本(2015年1月29日)是0.15 0.2。

您将要升级,不仅仅是因为修复了错误和新功能,而且因为您在网络上找到的许多示例都不适合您。