为什么开发人员不允许对 .ix 进行按位运算?好奇这是技术限制问题还是我忽略的逻辑问题。
df.ix[df["ptdelta"]<=0 & df["ptdelta"]>5]
回溯是:
TypeError: ufunc 'bitwise_and' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule 'safe'
'''
注意:从 Pandas v0.20 开始,.ix
不推荐使用索引器以支持.iloc
/ .loc
。