次の行はAttributeErrorを示します:'module' object has no attribute 'bdate_range'
。
これは循環参照と関係があるのではないかと思います。でも、どこかわかりません。
import pandas as pd
times = pd.bdate_range(start=pd.datetime(2012,11,14,0,0,0),
end=pd.datetime(2012,11,17,0,0,0),
freq='10T')
これはトレースバックです:
AttributeError Traceback (most recent call last)
<ipython-input-3-1eb62db1246d> in <module>()
4
5
----> 6 times = pd.bdate_range(start=pd.datetime(2012,11,14,0,0,0),end=pd.datetime(2012,11,17,0,0,0),
freq='10T')
7 filtered_times = [x for x in times if x.time() >= time(9,30) and x.time() <= time(16,20)]
8 prices = randn(len(filtered_times))
AttributeError: 'module' object has no attribute 'bdate_range'