I am trying to break a column of list value into different column. Can you guys please give me some guidance how to do that? Thanks In the original dataframe, there is no column name(Column 1 Column2). I just name it in order to have better understanding on this issue.
Before:
Column 1 Column2
A ['2.49', '-2.18', '-3.79']
B ['2.56', '-3.02', '-4.92']
C ['-0.09', '-1.73', '-3.47']
After:
Column 1 Column2 Column3 Column4
A '2.49' '-2.18' '-3.79'
B '2.56' '-3.02' '-4.92'
C '-0.09' '-1.73' '-3.47'