如何将组行附加到数据框中 [英] How to append group row into dataframe

查看:24
本文介绍了如何将组行附加到数据框中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个 df1:

A B C
1 2 3
5 7 9

其中 A B C 是列名.

我有另一个带有一列的 df2:

I have another df2 with one column:

A
1
2
3
4

我想为 df1 的每一列附加 df2,创建这个最终数据框:

I would like to append df2 for each column of df1, creating this final dataframe:

A B C 
1 2 3
5 7 9
1 1 1
2 2 2
3 3 3
4 4 4

可以吗?

推荐答案

data.frame(sapply(df1, c, unlist(df2)), row.names = NULL)
#  A B C
#1 1 2 3
#2 5 7 9
#3 1 1 1
#4 2 2 2
#5 3 3 3
#6 4 4 4

数据

df1 = structure(list(A = c(1L, 5L), B = c(2L, 7L), C = c(3L, 9L)), .Names = c("A", 
"B", "C"), class = "data.frame", row.names = c(NA, -2L))

df2 = structure(list(A = 1:4), .Names = "A", class = "data.frame", row.names = c(NA, 
-4L))

这篇关于如何将组行附加到数据框中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆