I have a data frame with the following shape:
Index Col1 Col2 Col3
1 A B C
2 D E F
3 G H I
I would like to receive a data frame with the following shape:
1 Col1 A
1 Col2 B
1 Col3 C
2 Col1 D
2 Col2 E
...
Already went through .groupby(), pivot(), iterators but no success