将数据帧合并到另一个数据帧的底部
我想将下面的数据框结合起来。
> am_R3_1
Group.2 x.x x.y
2 clearterminate 3 21
3 display.cryptic 86 30.127
4 price 71 898
41 AM 160 316.37
> am_R3_2
Group.2 x.x x.y
1 ping 1 5
2 1Y 1 5
我希望所有 Group.1 的最终结果与下面类似。请告知我可以使用哪个函数来获得以下结果?
Group.2 x.x x.y
2 clearterminate 3 21
3 display.cryptic 86 30.127
4 price 71 898
41 AM 160 316.375
1 ping 1 5
2 1Y 1 5
What I would like to combine both of this below dataframe.
> am_R3_1
Group.2 x.x x.y
2 clearterminate 3 21
3 display.cryptic 86 30.127
4 price 71 898
41 AM 160 316.37
> am_R3_2
Group.2 x.x x.y
1 ping 1 5
2 1Y 1 5
I would like to get the final result smiliar to below for all Group.1 . Please advise which function I can use to get the following result ?
Group.2 x.x x.y
2 clearterminate 3 21
3 display.cryptic 86 30.127
4 price 71 898
41 AM 160 316.375
1 ping 1 5
2 1Y 1 5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信你想要
rbind
:I believe you want
rbind
:使用 rbind 按行组合两个 data.frame。如果所有列都匹配,这将附加两个 data.frame 的行:
为了将来参考,还有一个函数
cbind
将列附加到现有的 data.frame。请参阅
?rbind
或?cbind
获取更多帮助。Use
rbind
to combine two data.frames by row. This will append the rows of two data.frames if all of the columns are matching:For future reference, there is also a function
cbind
that appends columns to an existing data.frame.See
?rbind
or?cbind
for more help.