I've a panda dataframe in this format.
Var1 Var2 Var2
A [2016-09-26, 2016-08-25, 2016-08-06] [u'1', u'5', u'4']
B [2016-09-26, 2016-08-25, 2016-08-06] [u'1', u'5', u'4']
I want to convert it into the following format.
Var1 Var2 Var3
A 2016-09-26 1
A 2016-08-25 5
A 2016-08-06 4
B 2016-09-26 1
B 2016-08-25 5
B 2016-08-06 4
Can anyone please tell me how to do it?
Thanks a lot!