I have a pandas Dataframe like as follow:
column1 column2
0 0 0
1 0 0
2 0 0
3 0 0
... ... ...
I would like to change all data in column2 with
a = numpy.zeros([16,16,16])
so the dataframe will look like
column1 column2
0 0 [[[0,0,0,....
1 0 [[[0,0,0,....
2 0 [[[0,0,0,....
3 0 [[[0,0,0,....
... ... ...