我不需要任何智能rbind,例如rbindlistrbind.fillbind_row等。

我需要一个哑巴rbind来简单地绑定两个数据帧:

> a <- data.frame(a = 1:3)
> b <- data.frame(b = 1:2)

> some.magic.bind(a, b) # what function to use here?

   a  b
1  1 1
2  2 2
3  3 NA

最佳答案

您要cbind而不是rbind

尝试:

a = c(1:3)
b = c(1:2)

length(b) = length(a)

cbind(a, b)

关于r - 哑rbind用于不同长度的数据帧,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30058341/

10-12 22:38