I got pandas train df which looks like this:
                 image
1  [[0, 0, 0], [1, 0, 1], [0, 1, 1]]
2  [[1, 1, 1], [0, 0, 1], [0, 0, 1]]
2  [[0, 0, 1], [0, 1, 1], [1, 1, 1]]
Is there any way to "explode" it but into columns
   1  2  3  4  5  6  7  8  9
1  0, 0, 0, 1, 0, 1, 0, 1, 1
2  1, 1, 1, 0, 0, 1, 0, 0, 1
2  0, 0, 1, 0, 1, 1, 1, 1, 1
 
    