I have a dataset:
ID WhereEaten
1 restaurant
1 home
2 hospital
3 camp
4 restaurant
4 grocery store
I want to merge the rows by ID, and combine the values of WhereEaten to look like this:
ID WhereEaten
1restaurant, home
2 hospital
3 camp
4 restaurant, grocery store
Any help is appreciated. Thanks!