'How to use function do.call() efficiently?
I have many dataframe (a,b,c,d,e,f,g,....) in a list which have the same structure. When using do.call() to union all of them, it's very slow. Is there any method to combine them more efficiently? Thanks!
mylist<-list(a,b,c,d,e,f,g,....)
do.call(rbind, mylist)
Solution 1:[1]
library(data.table)
rbindlist(mylist)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Sweepy Dodo |
