I have a df that has 2 columns - game_id and score
game id score
1 55
1 59
1 62
1 71
2 74
2 65
2 89
2 98
I would want the result to be
game id score
1 55
2 74
Just trying to grab the first row for each game id
a for and if loop to delete