I have a huge data frame with 200 columns, something like this
A  1  E  5  I 9   ...
B  2  F  6  J 10  ...
C  3  G  7  K 10  ...
D  4  H  8  L 12  ...
what would be the best way to reorgainse 200 columns into two columns, so that:
A  1
B  2
C  3
D  4
E  5
F  6
G  7
H  8
I  9
I'm new to R. There must be a very easy way to do this, but I can't really find it. Tidyr doesn't seem to have a function for this.