python读取列相同的行_python – 获取pandas中其列中具有相同值的行

在pandas中,给定一个DataFrame D:

+-----+--------+--------+--------+

| | 1 | 2 | 3 |

+-----+--------+--------+--------+

| 0 | apple | banana | banana |

| 1 | orange | orange | orange |

| 2 | banana | apple | orange |

| 3 | NaN | NaN | NaN |

| 4 | apple | apple | apple |

+-----+--------+--------+--------+

当有三列或更多列时,如何返回其所有列中具有相同内容的行,以便它返回:

+-----+--------+--------+--------+

| | 1 | 2 | 3 |

+-----+--------+--------+--------+

| 1 | orange | orange | orange |

| 4 | apple | apple | apple |

+-----+--------+--------+--------+

请注意,当所有值都是NaN时,它会跳过行.

如果这只是两列,我通常做D [D [1] == D [2]],但我不知道如何对超过2列的DataFrame进行推广.

解决方法:

类似于Andy Hayden的回答,检查min是否等于max(然后行元素都是重复的):

df[df.apply(lambda x: min(x) == max(x), 1)]

标签:python,pandas,dataframe

来源: https://codeday.me/bug/20190926/1819260.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值