How could I convert column b and column c to float and also expend column b to two columns.
Example dataframe:
a b c
0 36 [-212828.804308, 100000067.554] [-3079773936.0]
1 39 [-136.358761948, -50000.0160325] [1518911.64408]
2 40 [-136.358761948, -50000.0160325] [1518911.64408]
Expected:
a b1 b2 c
0 36 -212828.804308 100000067.554 -3079773936.0
1 39 -136.358761948, -50000.0160325 1518911.64408
2 40 -136.358761948, -50000.0160325 1518911.64408
bandcactuallylistorstring?