Rbind不携带空data.frame的别名

时间:2018-09-13 03:45:38

标签: r base

如何用空的data.frame进行绑定?仅当至少有一行时,它才携带列名,而当它为空时,它不携带列名。空的data.frame通常在for循环之前创建,因此此行为很烦人。

示例:

test= data.frame(a=1, b=2, c=3)
rbind(test, c(3,4,5))
  a b c
1 1 2 3
2 3 4 5
test= data.frame(matrix(ncol= 3, nrow= 0))
names(test) = c("a", "b", "c")
rbind(test, c(3,4,5))
  X3 X4 X5
1  3  4  5

1 个答案:

答案 0 :(得分:1)

如Dan Y所指出的,这是预期的行为,而不是错误。

data.table可以做到

library(data.table)

# Create empty data.frame
test <- data.frame(matrix(ncol= 3, nrow= 0))
# Give it names
names(test) <- c("a", "b", "c")

# Coerce to data.table
setDT(test)

# rbind vector (set as a list)
x <- rbind(test, as.list(c(3,4,5)), use.names = F, fill = F)

# Coerce back to a data.frame if you wish
setDF(x)

x
>  a b c
 1 3 4 5