DataFrame.idxmin
- DataFrame.idxmin(axis: int = 0) Series [source]
Return index of first occurrence of minimum over requested axis.
NA/null values are excluded.
Parameters
- axis{0, 1}, default 0
The axis to filter on, expressed as index (int).
Returns
pandas.Series
See Also
Examples
>>> from tests import OPENSEARCH_TEST_CLIENT
>>> oml_df = oml.DataFrame(OPENSEARCH_TEST_CLIENT, 'flights') >>> oml_flights = oml_df.filter(["AvgTicketPrice", "FlightDelayMin", "dayOfWeek", "timestamp"]) >>> oml_flights.idxmin() AvgTicketPrice 5454 FlightDelayMin 0 dayOfWeek 0 dtype: object