我使用Dominik在回答这个问题时提供的策略
我已经把它变成了我的qmao包中的一个函数。此代码也是FinancialInstrument 包中getSymbols.FI的核心。
do.call.rbind <- function(lst) {
while(length(lst) > 1) {
idxlst <- seq(from=1, to=length(lst), by=2)
lst <- lapply(idxlst, function(i) {
if(i==length(lst)) { return(lst[[i]]) }
return(rbind(lst[[i]], lst[[i+1]]))
})
}
lst[[1]]
}
如果你愿意rbind
data.frames
,@JoshuaUlrich在这里提供了一个优雅的解决方案
据我所知(无需仔细观察),所提供的三种解决方案(@JoshuaUlrich's、@Alex's和 qmao::do.call.rbind)中的任何一个都不是内存问题。所以,它归结为速度...
library(xts)
l <- lapply(Sys.Date()-6000:1, function(x) {
N=60*8;xts(rnorm(N),as.POSIXct(x)-seq(N*60,1,-60))})
GS <- do.call.rbind
JU <- function(x) Reduce(rbind, x)
Alex <- function(x) do.call(rbind, lapply(x, as.data.frame)) #returns data.frame, not xts
identical(GS(l), JU(l)) #TRUE
library(rbenchmark)
benchmark(GS(l), JU(l), Alex(l), replications=1)
test replications elapsed relative user.self sys.self user.child sys.child
3 Alex(l) 1 89.575 109.9080 56.584 33.044 0 0
1 GS(l) 1 0.815 1.0000 0.599 0.216 0 0
2 JU(l) 1 209.783 257.4025 143.353 66.555 0 0
do.call.rbind
显然以速度取胜。