Description Usage Arguments References Examples
View source: R/do.call.rbind.R
This is a functionalized version of Dominik's answer here: http://stackoverflow.com/questions/7224938/can-i-rbind-be-parallelized-in-r it does what do.call(rbind, lst) would do, but faster and with less memory usage
1 | do.call.rbind(lst)
|
lst |
a list to be rbound. (No guaranteed this
funtion will offer an improvement unless |
http://stackoverflow.com/questions/7224938/can-i-rbind-be-parallelized-in-r
1 2 3 4 | x <- xts(rnorm(10000), Sys.time()-10000:1*60)
splx <- split(x, 'days')
dcrx <- do.call.rbind(splx)
identical(x, dcrx)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.