ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any()
Posted wind-chaser
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any()相关的知识,希望对你有一定的参考价值。
在使用pandas判断数据时出现错误提示:
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
个人理解:这是因为,你将一个值与多个值或一个列表中的值相比较、匹配,导致的问题
看提示,我们可以知道,在比较前,我们可以使用它推荐的某个方法:
a.empty if(a.empty):print("!!") 判断a是否为空
a.item() 没有用过,应该a.item(i) 表示第i个节点
a.any() if(a.any() in [1,2,3,4]):print("!!") 判断 a中的任意一个值是否在[1,2,3,4]中
a.all() if(a.all() in [1,2,3,4]):print("!!") 判断 a中的所有值是否在[1,2,3,4]中
错误提示的意思应该就是 所选的真值不明确 也就是你给的值和作比较的值两个不是一个类型的。
以上是关于ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any()的主要内容,如果未能解决你的问题,请参考以下文章
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any()
python pandas进行条件筛选时出现ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.al