R 中的合并命令

发布于 2024-09-15 03:15:03 字数 395 浏览 7 评论 0原文

我一直在使用 R 中的合并命令,并试图找出如何使用 SUFFIX 参数。在线文档并没有很好地解释它。

我想做的是导入一些 csv 文件:

data1<-read.csv("fileA", header=T)
data2<-read.csv("fileB", header=T)

然后使用合并命令来合并它们。但是,我希望某些变量能够真正合并,而其他具有相同名称的变量则由它们来自的文件进行标记。例如,如果我的两个电子表格中都存在“NAME”变量,那么我希望它们正常合并,但如果出现“GRADE”变量,它将更改为 GRADE.fileA 和 GRADE .文件B。我已经能够获得 GRADE.x 和 GRADE.y,但我更喜欢这些变量上有更有用的标签。对此的任何帮助将不胜感激。谢谢。

I have been playing around with the merge command in R and am trying to figure out how to use the SUFFIX parameter. The online documentation does not do a very good job at explaining it.

What I'd like to do is import some csv files:

data1<-read.csv("fileA", header=T)
data2<-read.csv("fileB", header=T)

And then use the merge command to merge them. However, I would like for some variables to be truly merged, while other variables that hold the same name to be labeled by the file they came from. So for instance, if a "NAME" variable existed in both of my spreadsheets, then I'd like for them to be merged as normal, but if a "GRADE" variable showed up, it would be changed to GRADE.fileA and GRADE.fileB. I am already able to get GRADE.x and GRADE.y, but I would prefer more useful labels on these variables. Any help on this would be appreciated. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

淡淡の花香 2024-09-22 03:15:03

我猜测您没有在 merge 中明确指定 by arg。你想要这样的东西吗?

> NAME <- sample(letters,10)
> data1 <- data.frame(NAME,grade=sample(letters[1:4],10,TRUE))
> data2 <- data.frame(NAME,grade=sample(letters[1:4],10,TRUE))
> merged <- merge(data1,data2,by="NAME",suffixes=c(".fileA",".fileB"))
> merged
   NAME grade.fileA grade.fileB
1     d           a           c
2     e           d           d
3     f           b           a
4     j           c           c
5     l           b           a
6     o           a           c
7     p           d           d
8     q           d           a
9     t           a           b
10    x           d           c

I'm guessing that you didn't explicitly specify the by arg in merge. Do you want something like this?

> NAME <- sample(letters,10)
> data1 <- data.frame(NAME,grade=sample(letters[1:4],10,TRUE))
> data2 <- data.frame(NAME,grade=sample(letters[1:4],10,TRUE))
> merged <- merge(data1,data2,by="NAME",suffixes=c(".fileA",".fileB"))
> merged
   NAME grade.fileA grade.fileB
1     d           a           c
2     e           d           d
3     f           b           a
4     j           c           c
5     l           b           a
6     o           a           c
7     p           d           d
8     q           d           a
9     t           a           b
10    x           d           c
将军与妓 2024-09-22 03:15:03

我认为这应该有效:

merged.df <- merge(data1, data2, by='NAME', suffixes=c('.fileA', '.fileB'))

I think this should work:

merged.df <- merge(data1, data2, by='NAME', suffixes=c('.fileA', '.fileB'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文