组合两个data.frame cols而不创建新col。 [R

时间:2018-03-26 18:08:27

标签: r dataframe combinations

我们说我有

one <- mtcars[1:4, ]
two <- mtcars[1:7, ]

我需要得到的就是这个;在一个美丽的大df中,不添加由rbind(),rbind.fill(),union()等产生的另一个col。

>    mpg cyl  disp  hp drat    wt  qsec vs am gear carb
#> 1 21.0   6 160.0 110 3.90 2.620 16.46  0  1    4    4
#> 1 21.0   6 160.0 110 3.90 2.620 16.46  0  1    4    4
#> 2 21.0   6 160.0 110 3.90 2.875 17.02  0  1    4    4
#> 2 21.0   6 160.0 110 3.90 2.875 17.02  0  1    4    4
#> 3 22.8   4 108.0  93 3.85 2.320 18.61  1  1    4    1
#> 3 22.8   4 108.0  93 3.85 2.320 18.61  1  1    4    1
#> 4 21.4   6 258.0 110 3.08 3.215 19.44  1  0    3    1
#> 4 21.4   6 258.0 110 3.08 3.215 19.44  1  0    3    1
#> 5 17.8   6 167.6 123 3.92 3.440 18.90  1  0    4    4
#> 6 16.4   8 275.8 180 3.07 4.070 17.40  0  0    3    3
#> 7 17.3   8 275.8 180 3.07 3.730 17.60  0  0    3    3

我知道这可能是一个简单的推荐,但它让我很难弄明白,谢谢。

1 个答案:

答案 0 :(得分:1)

one <- mtcars[1:4, ]
two <- mtcars[1:7, ]

rbind(one,two)