0

我有六个不同的文件,它们都有相同的列,并且有超过 1,000,000 行的组合数据。我想将所有这些行转移到一个 R 变量中。

我可以做吗?您是否可以将多个文件中的数据实际导入 R 变量

4

1 回答 1

2

是的,是的,你可以。R 是非常通用的。

#  Get files
fls <- list.files( path = "C:/path/to/files/" , full.names = TRUE )

#  Read them in. Each is a list element
inTabs <- lapply( fls , read.table , h = TRUE , sep = "\t" )

#  Bind each together into a single data.frame
out <- do.call( rbind , inTabs )
于 2013-08-21T12:45:52.863 回答