我有熊猫数据框。我想根据涉及另外两列的条件从一列中获取单个值。我正在寻找来自 column3 的值,它是 column1 和 2 中的最大距离。
我构建了一个有效的简单示例:
d = pd.DataFrame({'c1':[.1,3,11.3],'c2':[3,6,.6],'c3':[8,.8,10.9]})
print'data d=\n%s\n' % d
x = float(d.c3[abs(d.c1-d.c2)==max(abs(d.c1-d.c2))].values)
print 'the value of x= \n%s\n' % x
此示例的输出与我预期的一样:
c1 c2 c3
0 0.1 3.0 8.0
1 3.0 6.0 0.8
2 11.3 0.6 10.9
the value of x=
10.9
我尝试将完全相同的逻辑应用于类中大型数据框的原始问题。代码是:
yInit = float(self.DenFrame.Depth[abs(self.DenFrame.Hper-self.DenFrame.Vper)==max(abs(self.DenFrame.Hper-self.DenFrame.Vper))].values)
但是这段代码会产生错误:
...
File "C:\Python27\lib\site-packages\pandas-0.9.0-py2.7-win32.egg\pandas\core\series.py", line 73, in wrapper
return Series(na_op(self.values, other.values),
File "C:\Python27\lib\site-packages\pandas-0.9.0-py2.7-win32.egg\pandas\core\series.py", line 59, in na_op
result[mask] = op(x[mask], y[mask])
TypeError: unsupported operand type(s) for -: 'str' and 'str'
我在这里发现列的类型可能存在问题,但深度是类型numpy.float64
Hper 是类型float
Vper 是类型float
,所以我了解它如何适用于我的问题。
从这一点来看,我不知道该怎么做,因为我知道相同的代码在一种情况下有效,但在另一种情况下无效,我无法发现问题。