Anybody know how I can "unpack" lists which are elements/cells of a np.array? This is what the output looks like now:
[[0 301227 0.863 0.456 -3.551 0.532 135.96200000000002 4
list([0.49, 0.33, 0.33, 0.28, 0.26, 0.47, 0.28, 0.29, 0.41, 0.42, 0.85, 0.48])
list([53.09, 119.1, 36.67, -1.91, 11.38, -20.86, -0.56, 4.01, -3.51, 0.9, -8.72, 1.04])
66.66666666666667 1.0]]
I want to unpack those lists so that each value is just another item/column in my array. I can also make the lists into np.arrays if that helps. Should be an easy fix, I just haven't found it yet.
Cheers