get index and column of max value pandas code example
Example 1: pandas get index of max value in column
#use this to get the index of the max value of a column
max_index = column.idxmax()
Example 2: how to find index of maximum value in dataframe in python
# applying idxmax() function.
df.idxmax(axis = 0)