Skip to content
Advertisement

Pandas multiindex dataframe – Selecting max from one index within multiindex multi column

I have below Dataframe how to find dedicated result. I have found multi row maximum with column A.

JavaScript

result must be :

JavaScript

How can I find maximum with col_1?

Advertisement

Answer

based on your desired example output, your question appears to be: how do I return the rows with the largest col_1 value per Caps group.

Your example input makes it look like 'Caps' and 'Lower' are your indices, but it’s a little easier if they are not indices and just regular columns.

I set up your data like this:

JavaScript

[pandas.Series.idxmax][1] should help, which returns the indices of the rows with the largest col_1 per Caps group:

JavaScript

Plugging that in:

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