I have a CSV file like this:
student | score
John | A
John | C
Mary | B
Mary | D
Kim | B
Kim | A
Each student has multiple scores, and I want to merge score information under unique student with the highest score.
I want to have a table like this in result:
student | score
John | A
Mary | B
Kim | A
I tried to find a post about this but failed. Is there any approach to do this using built-in library?