I want to create a Data Frame from a dictionary where the values are 2D numpy array.
my_Dict={'a': array([[1, 2, 3],[4, 5, 6]]), 'b': array([[7,8,9],[10,11,12]]),'c': array([[13,14,15],[16,17,18]])}
I expect the outcome to be a Data frame with 2 rows( number of rows in numpy array)and 3 column as below:
a b c
0 [1, 2, 3] [7,8,9] [13,14,15]
1 [4, 5, 6] [10,11,12] [16,17,18]
I tried changing the values to list and it worked. but I want to keep the values as np array for applying numby functions to the values.