Pandas Groupby la plus grande valeur

# max MPG for each Company
df.groupby('Company')['MPG'].max()
Chris P.