I have a frame with this format
"x" "y"
1 A text1
2 A text2
3 A text3
4 B text4
5 B text4
6 B text5
7 C text6
And I need to transform into this:
"x" "y"
1 A text1;text2;tex3
2 B text4;text5
3 C text6
Probably can be done with reshape or recast, but im not sure how to keep the texts values in the same row. Thanks!