I have a python list
:
[[([1, 20230112060000], [10000, 20230112060000]),
([1, 20230108060000], [7000, 20230109060000]),
([3, 20221229060000], [6929, 20221229060000]),
([1, 20221227060000], [3900, 20221227060000]),
([1, 20221226060000], [6500, 20221226060000]),
([1, 20221221060000], [4400, 20221222060000]),
([1, 20221216060000], [3888, 20221216060000]),
([1, 20221205060000], [5998, 20221205060000]),
([1, 20221128060000], [5000, 20221128060000]),
([1, 20221127060000], [5000, 20221127060000]),
([1, 20221123060000], [5666, 20221123060000]),
([1, 20221122060000], [6000, 20221122060000]),
([1, 20221120060000], [4300, 20221120060000]),
([1, 20221118060000], [4998, 20221118060000]),
([1, 20221028050000], [2700, 20221028050000]),
([1, 20221027050000], [5000, 20221027050000]),
([1, 20221022050000], [4300, 20221022050000]),
([1, 20221019050000], [4498, 20221019050000]),
([1, 20221018050000], [3500, 20221018050000]),
([2, 20221015050000], [3899, 20221015050000]),
([1, 20221011050000], [4500, 20221011050000]),
([2, 20221008050000], [4850, 20221008050000]),
([2, 20221007050000], [5898, 20221007050000]),
([1, 20221004050000], [7499, 20221004050000]),
([1, 20221001050000], [3400, 20221001050000]),
...
[],
[([2, 20230206060000], [357500, 20230206060000])],
[([2, 20230206060000], [357500, 20230206060000]),
([6, 20230205060000], [353833, 20230205060000])],
...]
But when I try to convert it to a NumPy array something weird happens:
import numpy as np
a = [...] # the above list
b = np.array(a)
b
:
array([list([([1, 20230112060000], [10000, 20230112060000]), ([1, 20230108060000], [7000, 20230109060000]), ([3, 20221229060000], [6929, 20221229060000]), ([1, 20221227060000], [3900, 20221227060000]), ([1, 20221226060000], [6500, 20221226060000]), ([1, 20221221060000], [4400, 20221222060000]), ([1, 20221216060000], [3888, 20221216060000]), ([1, 20221205060000], [5998, 20221205060000]), ([1, 20221128060000], [5000, 20221128060000]), ([1, 20221127060000], [5000, 20221127060000]), ([1, 20221123060000], [5666, 20221123060000]), ([1, 20221122060000], [6000, 20221122060000]), ([1, 20221120060000], [4300, 20221120060000]), ([1, 20221118060000], [4998, 20221118060000]), ([1, 20221028050000], [2700, 20221028050000]), ([1, 20221027050000], [5000, 20221027050000]), ([1, 20221022050000], [4300, 20221022050000]), ([1, 20221019050000], [4498, 20221019050000]), ([1, 20221018050000], [3500, 20221018050000]), ([2, 20221015050000], [3899, 20221015050000]), ([1, 20221011050000], [4500, 20221011050000]), ([2, 20221008050000], [4850, 20221008050000]), ([2, 20221007050000], [5898, 20221007050000]), ([1, 20221004050000], [7499, 20221004050000]), ([1, 20221001050000], [3400, 20221001050000]), ([1, 20220928050000], [5000, 20220929050000]), ([1, 20220926050000], [3000, 20220926050000]), ([1, 20220925050000], [4500, 20220925050000]), ([1, 20220922050000], [4000, 20220922050000]), ([1, 20220920050000], [5000, 20220920050000]), ([1, 20220916050000], [8000, 20220916050000]), ([2, 20220915050000], [6625, 20220915050000]), ([2, 20220914050000], [4500, 20220914050000]), ([1, 20220903050000], [10000, 20220903050000]), ([1, 20220821050000], [8600, 20220821050000]), ([2, 20220820050000], [37500, 20220820050000]), ([1, 20220819050000], [30000, 20220819050000]), ([2, 20220818050000], [13999, 20220818050000]), ([1, 20220816050000], [4000, 20220817050000]), ([1, 20220815050000], [4000, 20220815050000])]),
list([]), list([([1, 20230112060000], [10000, 20230112060000])]),
...,
list([([1, 20230123060000], [5745, 20230123060000]), ([1, 20230105060000], [13000, 20230105060000]), ([1, 20221228060000], [6000, 20221228060000]), ([2, 20221227060000], [6000, 20221227060000]), ([1, 20221222060000], [8571, 20221222060000]), ([1, 20221218060000], [8250, 20221218060000]), ([1, 20221216060000], [8000, 20221216060000]), ([1, 20221213060000], [7500, 20221213060000]), ([1, 20221210060000], [3500, 20221210060000]), ([1, 20221109060000], [6500, 20221109060000])]),
list([([1, 20230123060000], [5745, 20230123060000]), ([1, 20230105060000], [13000, 20230105060000]), ([1, 20221228060000], [6000, 20221228060000]), ([2, 20221227060000], [6000, 20221227060000]), ([1, 20221222060000], [8571, 20221222060000]), ([1, 20221218060000], [8250, 20221218060000]), ([1, 20221216060000], [8000, 20221216060000]), ([1, 20221213060000], [7500, 20221213060000]), ([1, 20221210060000], [3500, 20221210060000]), ([1, 20221109060000], [6500, 20221109060000]), ([1, 20220909050000], [9999, 20220909050000])]),
list([([1, 20230123060000], [5745, 20230123060000]), ([1, 20230105060000], [13000, 20230105060000]), ([1, 20221228060000], [6000, 20221228060000]), ([2, 20221227060000], [6000, 20221227060000]), ([1, 20221222060000], [8571, 20221222060000]), ([1, 20221218060000], [8250, 20221218060000]), ([1, 20221216060000], [8000, 20221216060000]), ([1, 20221213060000], [7500, 20221213060000]), ([1, 20221210060000], [3500, 20221210060000]), ([1, 20221109060000], [6500, 20221109060000]), ([1, 20220909050000], [9999, 20220909050000]), ([1, 20220901050000], [8444, 20220901050000])])],
dtype=object)
For some reason, the tuples and the lists are not converted properly. Because of this, b
does not function like a normal NumPy array because all of the items are objects. I know I could go through and covert all of the tuples
to lists
, but is there a way to force NumPy to convert everything properly?
By the way, by converted properly I mean instead of:
array([list([()])])
It should be converted like:
array([[[]]])