Skip to content
Advertisement

How to get all the rows with the same values on a certain set of columns of an other specified row in Pandas?

In a setup similar to this:

JavaScript

My question is how to get ALL the rows in the dataframe with the same values on a certain set of columns ( let’s say for example {B,C} ) of an other specified row ( for example row with index 3)

I want this (index 3, set {B,C}):

JavaScript

The problem now is that in my case my set of columns ({B,C}) is composed of more than 200 columns, and i can’t find a way to generate such a long condition. For the problem you can assume the column are enumerated from 0 to n.

Advertisement

Answer

You can have the subset of columns as a list and get the values at the given index for the subset of columns using .loc accessor, then check for equalities and call all for axis=1, finally get the resulting dataframe for this masking.

JavaScript

OUTPUT:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement