Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何函数可以检查熊猫中任何列的任何行中是否存在值,例如
columnA columnB columnC "john" 3 True "mike" 1 False "bob" 0 False
在上面的数据框上,我想知道"mike"整个数据框的任何元素中是否有任何值,如果存在,我想获取True- 否则获取False.
"mike"
True
False
谢谢。
像这样的东西:
df.apply(lambda x: 'mike' in x.values, axis=1).any()
或者
df.applymap(lambda x: x == 'mike').any().any()