我不确定这是一个错误还是设计使然——也许我遗漏了一些东西,并且 ohlc 聚合器不应该与数据帧一起使用。也许这种行为是设计使然,因为除了索引列和价格列之外的数据框可能会产生奇怪的结果?其他聚合器(mean、stdev 等)使用数据框。无论如何,我正在尝试从这些数据中获取 OHLC,并且转换为时间序列似乎也不起作用。
这是一个例子:
import pandas as pd
rng = pd.date_range('1/1/2012', periods=1000, freq='S')
ts = pd.Series(randint(0, 500, len(rng)), index=rng)
df = pd.DataFrame(randint(0,500, len(rng)), index=rng)
ts.resample('5Min', how='ohlc') # works great
df.resample('5Min', how='ohlc') # throws a "NotImplementedError"
newts = pd.TimeSeries(df) #am I missing an index command in this line?
# the above line yields this error "TypeError: Only valid with DatetimeIndex or
PeriodIndex"
Full NotImplementedError paste:
NotImplementedError Traceback (most recent call last)
/home/jeff/<ipython-input-7-85a274cc0d8c> in <module>()
----> 1 df.resample('5Min', how='ohlc')
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/core/generic.pyc in resample(self, rule, how, axis, fill_method, closed, label, convention, kind, loffset, limit, base)
231 fill_method=fill_method, convention=convention,
232 limit=limit, base=base)
--> 233 return sampler.resample(self)
234
235 def first(self, offset):
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/tseries/resample.pyc in resample(self, obj)
66
67 if isinstance(axis, DatetimeIndex):
---> 68 rs = self._resample_timestamps(obj)
69 elif isinstance(axis, PeriodIndex):
70 offset = to_offset(self.freq)
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/tseries/resample.pyc in _resample_timestamps(self, obj)
189 if len(grouper.binlabels) < len(axlabels) or self.how is not None:
190 grouped = obj.groupby(grouper, axis=self.axis)
--> 191 result = grouped.aggregate(self._agg_method)
192 else:
193 # upsampling shortcut
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/core/groupby.pyc in aggregate(self, arg, *args, **kwargs)
1538 """
1539 if isinstance(arg, basestring):
-> 1540 return getattr(self, arg)(*args, **kwargs)
1541
1542 result = {}
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/core/groupby.pyc in ohlc(self)
384 For multiple groupings, the result index will be a MultiIndex
385 """
--> 386 return self._cython_agg_general('ohlc')
387
388 def nth(self, n):
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/core/groupby.pyc in _cython_agg_general(self, how, numeric_only)
1452
1453 def _cython_agg_general(self, how, numeric_only=True):
-> 1454 new_blocks = self._cython_agg_blocks(how, numeric_only=numeric_only)
1455 return self._wrap_agged_blocks(new_blocks)
1456
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/core/groupby.pyc in _cython_agg_blocks(self, how, numeric_only)
1490 values = com.ensure_float(values)
1491
-> 1492 result, _ = self.grouper.aggregate(values, how, axis=agg_axis)
1493 newb = make_block(result, block.items, block.ref_items)
1494 new_blocks.append(newb)
/usr/local/lib/python2.7/dist-packages/pandas-0.9.2.dev-py2.7-linux-x86_64.egg/pandas/core/groupby.pyc in aggregate(self, values, how, axis)
730 values = values.swapaxes(0, axis)
731 if arity > 1:
--> 732 raise NotImplementedError
733 out_shape = (self.ngroups,) + values.shape[1:]
734
NotImplementedError: