将来自不同文件的数据行传输到单个R变量中

时间:2013-08-21 12:39:39

标签: r

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

我可以这样做吗?你真的可以将几个文件中的数据导入R变量

1 个答案:

答案 0 :(得分: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 )