pandas报错 TypeError: Cannot perform ‘rand_‘ with a dtyped [object] array and scalar of type [bool](代码

Posted _刘文凯_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas报错 TypeError: Cannot perform ‘rand_‘ with a dtyped [object] array and scalar of type [bool](代码相关的知识,希望对你有一定的参考价值。

python在使用&的时候报错TypeError: Cannot perform ‘rand_’ with a dtyped [object] array and scalar of type [bool]


问题

data = pd.DataFrame()
data.iloc[:,0] == key0 & data.iloc[:,1] == key1

以上会报错!!
这是因为&的两边只能是bool型数据

解决
只需要在两边都加上括号就行了

(data.iloc[:,0] == key0) & (data.iloc[:,1] == key1)

以上是关于pandas报错 TypeError: Cannot perform ‘rand_‘ with a dtyped [object] array and scalar of type [bool](代码的主要内容,如果未能解决你的问题,请参考以下文章

TypeError:更新后无法读取未定义的属性“_attributes”

Pandas :TypeError: float() 参数必须是字符串或数字,而不是 'pandas._libs.interval.Interval'

Pandas:TypeError:sort_values() 缺少 1 个必需的位置参数:'by'

pandas.DataFrame.fillna - TypeError:只有整数标量数组可以转换为标量索引

Pandas/BigQuery - TypeError:“str”和“int”实例之间不支持“<”

将 Pandas 数据帧转换为 Spark 数据帧的 TypeError