trouver l'index correspondant à la valeur maximale pandas

my_max_ind = data['x1'].idxmax()                  # Index of maximum in column
print(my_max_ind)
# 4
Confused Cobra