Lets say I have a DataFrame like following.
A B
0 text1 200
1 text2 200
2 text1 400
3 text2 500
4 text1 300
5 text1 600
6 text2 300
I want to print following output
A B
0 text1,text2 200
2 text1 400
3 text2 500
4 text1,text2 300
5 text1 600
There is no order,I just want to take text labels of column "A" for matching values in column "B". This has to be done with df.groupby as I know. Any way no success with my efforts yet. Hope you get my question.