将数据帧合并到另一个数据帧的底部

发布于 2024-12-01 19:24:01 字数 675 浏览 1 评论 0原文

我想将下面的数据框结合起来。

    > 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伏妖词 2024-12-08 19:24:01

我相信你想要rbind

result<-rbind(am_R3_1, am_R3_2)

I believe you want rbind:

result<-rbind(am_R3_1, am_R3_2)
锦爱 2024-12-08 19:24:01

使用 rbind 按行组合两个 data.frame。如果所有列都匹配,这将附加两个 data.frame 的行:

rbind(am_R3_1, am_R3_2)

为了将来参考,还有一个函数 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:

rbind(am_R3_1, am_R3_2)

For future reference, there is also a function cbind that appends columns to an existing data.frame.

See ?rbind or ?cbind for more help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文