I have a Dataframe, which has two columns (Customer, Transactions). The Transactions column is a tuple of all the transaction id's of that customer.
Customer Transactions
1 (a,b,c)
2 (d,e)
I want to convert this into a dataframe, which has customer and transaction id's, like this.
Customer Transactions
1 a
1 b
1 c
2 d
2 e
We can do it using loops, but is there a straight 1 or 2 lines way for doing that.