I have a unstructured Data frame in python which has two variables X and Y. Every observation in X is array and Y is class variable which looks like
X Y
1. [ [ 1,2] ] a
2. [ [ 2,3] ] b
I want to Have it like
1. 1 2 a
2. 2 3 b
I have tried option from numpy to data frame but not working
