I have two numpy arrays with the following dimensions
Array1
(3,6)
Array2
(3,5)
Can I concatenate this into a pandas df with dimensions (2,3, )
i.e third dimensional being varied?
So, if I query the first row of the resulting DF, I get a numpy array of dimension (3,6)
and if I query the second row of the resulting DF, I get a numpy array of dimensions (3,5)
In both cases the one of the dimensions of the input array is constant.
Thanks!