我有以下 data.frame x
a d g
b e h
c f i
注意:以字母为例。实际的 data.frame 有数字代替字母(真实数据不是升序,如本例所示)
我想通过将 2 到 4 列放在第一个列下,将它转换为一个独特的列。预期结果如下
a
b
c
d
e
f
g
h
i
我尝试了以下代码
matrix(t(x), ncol=1, nrow=ncol(x)*nrow(x), byrow=F)
但它(显然)给出了以下
a
d
g
b
e
h
c
f
i