I am working with a DF similar to this one:
A B C
0 1 4 7
1 2 5 8
2 3 6 9
I want the values of all columns to be stacked into the first column
Desired Output:
A
0 1
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9