I have a 2D numpy array like below, which I would like to store in a pandas column. I'm unable to find relevant example any where upon search. Please help.Thanks!
#2D array
[[0,2],[2,3]]
#Expected output is pandas dataframe with single column :
[0,2]
[2,3]
pd.Series(data)