I have a DataFrame in which one of the column has the list of values ( each values is a value of a feature). Now I need to convert those list of values into each column.
Ex: DataFrame is having two columns in which data column is list of values
data , Time [1,2,3,4], 12:34 [5,6,7,8], 12:36 [9,1,2,3], 12:45
I need to convert then as
Ex:
data0 data1 data2 data3 Time
1 , 2 , 3 , 4 , 12:34
5 , 6 , 7 , 8 , 12:36
9 , 1 , 2 , 3 , 12:45
How can I do this efficiently?