Grupo de pandas pelo maior valor

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