<div dir="ltr">Ah ok. mclapply is a little beyond my depth, but I think you can always put the variable you are splitting by (<span style="font-size:12.8000001907349px">1:nrow(xx) %/% 5 here) directly into the by argument of xx[i,j,by], so...</span><div><span style="font-size:12.8000001907349px"><br></span></div><div><div style=""><span style="font-size:12.8000001907349px">q <- list(data.table(runif(9)),data.table(runif(9)))</span></div><div style=""><span style="font-size:12.8000001907349px">lapply( q, function(xx) xx[, freq:=.N, by=.(V1,1:nrow(xx) %/% 5)] )</span></div></div><div style=""><span style="font-size:12.8000001907349px"><br></span></div><div style=""><span style="font-size:12.8000001907349px">works for me, on data.table 1.9.4.</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 20, 2015 at 11:55 AM, Sebastian Fischmeister <span dir="ltr"><<a href="mailto:sfischme@uwaterloo.ca" target="_blank">sfischme@uwaterloo.ca</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
<br>
> I think you should use a single data.table; it's much more straightforward<br>
> in that case:<br>
><br>
> qq <- data.table(runif(18),id=rep(1:2,each=9))<br>
> qq[,freq:=.N,by=.(id,seq(nrow(qq))%/%5)]<br>
<br>
</span>Thanks for the idea, unfortunately I need lists. The example is just a<br>
minimal example to show the problem. The actual code will use large<br>
data.tables in lists and I want to eventually use mclapply to<br>
parallelize the computation.<br>
<span class="HOEnZb"><font color="#888888"><br>
  Sebastian<br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<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>
</div></div></blockquote></div><br></div>