我正在为OEC包(https://cran.r-project.org/web/packages/oec/index.html)开发一个新功能,所以我可以批量下载数据。
这是我想要包含在我的包https://gist.github.com/pachamaltese/3b585dded0a80c031c65e98b268ebcc7
中的新功能所以,这是一个MWE
#install.packages("devtools")
library(devtools)
install_github("pachamaltese/oec/cran")
library(oec)
getdata_interval("chl","chn",2010,2014,6,2)
现在我找不到一种通用方法来判断该函数的结果。如果我有3年的时间我可以做rbind(year_2010, year_2012, year_2014
但是因为这应该帮助人们而不是惹恼那么长rbind
我想知道是否有办法将rbind("all the dataframes starting with year_")
置于函数内部getdata_interval
。
有一种非常通用的方法吗?提前谢谢。