I have following pandas series:
0 [[1, 11283, 01, 5], [2,5, 1, 1]]
1 [[6, 33, 21, 2], [11283, 01, 5,1]]
2 [[8430, 01, 2, 2],[2, 1, 1, 1]]
I need to save this as csv but csv rows should be something similar to following:
1, 11283, 01, 5
2,5, 1, 1
6, 33, 21, 2
11283, 01, 5,1
8430, 01, 2, 2
2, 1, 1, 1