<div dir="ltr">apply(as.data.table(ll), 1, rbindlist)<div><br></div><div>or if you don't care about keeping the original list as a list, use setDT instead of as.data.table</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Aug 11, 2015 at 7:18 AM, statquant3 <span dir="ltr"><<a href="mailto:statquant@outlook.com" target="_blank">statquant@outlook.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Say I have a list of list of data.tables<br>
<br>
l <- list( data.table(a=rnorm(3), b=rnorm(3)) , data.table(c=rnorm(12),<br>
d=rnorm(12)) )<br>
ll <- list()<br>
ll[[1]] <- l<br>
ll[[2]] <- l<br>
<br>
Is there a smart use of rbindlist or use in conjusction with *apply/foreach<br>
that can efficiently bind this list of list to a list of data.table element<br>
by element (here we would get a list of 2 data.table with resp. 2columns, 6<br>
rows and 2 columns 24 rows)<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://r.789695.n4.nabble.com/rbind-lists-of-list-of-data-table-tp4710977.html" rel="noreferrer" target="_blank">http://r.789695.n4.nabble.com/rbind-lists-of-list-of-data-table-tp4710977.html</a><br>
Sent from the datatable-help mailing list archive at Nabble.com.<br>
_______________________________________________<br>
datatable-help mailing list<br>
<a href="mailto:datatable-help@lists.r-forge.r-project.org">datatable-help@lists.r-forge.r-project.org</a><br>
<a href="https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/datatable-help" rel="noreferrer" target="_blank">https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/datatable-help</a><br>
</blockquote></div><br></div>