To select a dataframe row I use :
dataframe[dataframe['column_name'] == 'column_value']
I'm attempting to discover the performance of this code but cannot find where the API defines the == method in context of finding a row.
How to find the source of == operator in order to determine above line of code performance ?
I assume it's located in https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.html but unsure how to search ?