This question already has an answer here:
assume my data frame is:
Col1 Col2
1 A
3 C
8 L
1 H
I wish to get a table as:
Col1 Col2
1 A,H
3 C
8 L
Which function should I use? Thanks!