I have a table with a structure is like:
[["A","1","12"],
["A","2","112"],
["B","0","121"],
["B","1","21"],
["B","2","51"]]
I need to change it into a dataframe like:
0 1 2
A 0 12 112
B 121 21 51
I tried the stack function, but it doesn't seem to have worked.