绑定函数返回的数据帧

时间:2017-03-03 00:00:44

标签: r dataframe

假设我在R中有一个名为build_dataframe(year)的函数,它接受一年并为其构建所需的数据帧。

build_dataframe <- function(year) {
     #build a data frame for given year
}

我想建立多年的数据框说

years = c(2000, 2001, 2002, 2003)

我该如何有效地做到这一点?我试过像

这样的东西
rbind(sapply(years, build_dataframe))

但会破坏数据帧。

提前感谢您的帮助!

0 个答案:

没有答案