I need to start keeping notes…here’s an example of how to dstack.


import pandas as pd
c=np.dstack((['a','b'],[2,3]))
d=pd.DataFrame(c[0])
d.head()