Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 R 的新手,我似乎不知道如何合并两个数据集。我在手册中找到的示例使用合并功能来合并具有唯一标识符的数据,但这不是我想要的。我只是想将我的数据集 #2 中的其他数据行添加到数据集 #1 中。
当两个数据集具有相同的变量时,可以使用 rbind 合并两个数据集
total <- rbind(data frameA, data frameB)
如果变量的数量不同 - 您可以在变量数量较少的数据框中创建其他变量,将它们设置为 NA 然后合并