Skip to content
Advertisement

How do I find the position of a value in a pandas.DataFrame?

I want to search for ‘row3’ in the index of the DataFrame below, which should be 2 for a zero-based array.

JavaScript

Is there a function which return the row number of ‘row3’? Thanks in advance for any help.

Advertisement

Answer

You could use Index.get_loc (docs):

JavaScript

But this is a somewhat unusual access pattern– never need it myself.

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