Skip to content
Advertisement

Slice pandas row of a specific column using numpy boolean

The objective is to slice multiple pandas row of a specific column using a Numpy boolean.

The following code should do the task

JavaScript

However, I wonder whether the above code can be shortened further, especially these lines

JavaScript

Currently, Pandas throw an error if I am to directly using Numpy boolean without converting to list

JavaScript

Is there something I miss, or this is the only way to achieve the intended objective?

Advertisement

Answer

You can simply use:

JavaScript

You actually don’t even need to convert h to a numpy array:

JavaScript

output:

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