J'expérimente en ipython3
où j'ai créé un tableau de tableaux :
In [105]: counts_array
Out[105]:
array([array([ 17, 59, 320, ..., 1, 7, 0], dtype=uint32),
array([ 30, 71, 390, ..., 12, 20, 6], dtype=uint32),
array([ 7, 145, 214, ..., 4, 12, 0], dtype=uint32),
array([ 23, 346, 381, ..., 15, 19, 5], dtype=uint32),
array([ 51, 78, 270, ..., 3, 0, 2], dtype=uint32),
array([212, 149, 511, ..., 19, 31, 8], dtype=uint32)], dtype=object)
In [106]: counts_array.shape
Out[106]: (6,)
In [107]: counts_array[0].shape
Out[107]: (1590,)
Je souhaiterais obtenir un shape=(6, 1590), dtype=uint32
de ce monstre que j'ai créé.
Comment puis-je faire cela ?