本文介绍了 pandas :选择两列不同的行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个如下数据框

Suppose I have a dataframe as below

a  b  c  
1  1  45
0  2  74
2  2  54
1  4  44

现在,我希望a和b列不同的行.所以预期的输出是

Now I want the rows where column a and b are not same. So the expected outpu is

a  b  c 
0  2  74
1  4  44

我该怎么做?

推荐答案

我是可读性很高的人,请使用query:

I am a fan of readability, use query:

df.query('a != b')

输出:

   a  b   c
1  0  2  74
3  1  4  44

这篇关于 pandas :选择两列不同的行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 15:37