<p dir="ltr">Fyi, it's not well documented, but setting use.names=FALSE in rbind would replicate rbindlist behavior.</p>
<p dir="ltr">I think it's a reasonable FR - if/when all of rbind code goes into C, it would be trivial to add. <br>
</p>
<div class="gmail_quote">On Nov 9, 2013 10:51 AM, "G See" <<a href="mailto:gsee000@gmail.com">gsee000@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
Please note the inconsistency between the behavior of rbind() and<br>
rbindlist() below.<br>
<br>
m1 <- as.data.table(mtcars)<br>
m2 <- copy(m1)<br>
rbind(m1[, .SD[1], by=cyl], m2) # Gives warning and binds by name<br>
rbindlist(list(m1[, .SD[1], by=cyl], m2)) # no warning, and does NOT<br>
bind by name<br>
<br>
What do you think about making them have the same behavior and/or<br>
warning?  Personally, I prefer the behavior of rbind(), and would<br>
prefer to see a warning if column names are ignored like they are with<br>
rbindlist().<br>
<br>
Thanks,<br>
Garrett<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" target="_blank">https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/datatable-help</a><br>
</blockquote></div>