I can handle the chunking of the data internally to limit the number of copies, i.e. similar to what we use internally with ShrinkableVector but for data frames. This could be useful in do as well.
Oooh, that would be nice!
I think we could either:
do() that invisibly returns the input (so you can use it in a pipe). do_silent()? do() so that e.g. do(mtcars,_= plot(.$displ. $wt) would not modify the outputSince do() is going away, this is no longer needed.
Curious, what will replace do()?
Mutate + list-cols + purrr
@hadley I've been thinking about your response "Mutate + list-cols + purrr", I'm not sure I fully understand, would you mind sharing a small example? It'd be appreciated.
This shows how all the pieces fit together: http://r4ds.had.co.nz/many-models.html
Most helpful comment
This shows how all the pieces fit together: http://r4ds.had.co.nz/many-models.html