I have a data frame like this:
GN SN
a 0.1
b 0.2
c 0.3
d 0.4
e 0.4
f 0.5
I would like the following output:
GN
a
0.1
b
0.2
c
0.3
Can anyone help me? How to “interleave” the elements of the second column to the elements of the first column to gain the desired output?
First let’s create some data:
Next, we need to make sure the
ycolumn is a character and not a factor (otherwise, it will be converted to a numeric)Then we transpose the data frame and convert to a vector:
However, a more pertinent question is why you would want to do this.