for instance, I have a .csv file with 1000s of rows like below:
year,name
1992,Alex
1992,Anna
1993,Max
1993,Bob
1993,Tom
so on...
I want my output to be:
year name
1992 Alex, Anna
1993 Max, Bob, Tom
this looks simple but I'm not able to make the corresponding rows in a single row appended by a comma ','