Pandas: select rows where two columns are different

后端 未结 4 473
死守一世寂寞
死守一世寂寞 2020-12-19 09:15

Suppose I have a dataframe as below

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

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

4条回答
  •  囚心锁ツ
    2020-12-19 10:14

    I am a fan of readability, use query:

    df.query('a != b')
    

    Output:

       a  b   c
    1  0  2  74
    3  1  4  44
    

提交回复
热议问题