Does ddply push or pull when grouping data? I.e, does it involve many passes over the data frame, or just one?
|
feedback
|
|
If you take a look at the code, you see the general structure of the function:
so it basically rearranges the variables in a format that's easier to use, then breaks the data into pieces, and then use ldply on those pieces. Those pieces are generated by the function splitter_d. Pieces is actually a little bit more sophisticated than a list - it's a pointer to the original data and a list of indices. Whenever you request a piece of the list, it looks up the matching indices and extracts the appropriate data. This avoids having multiple copies of the data floating around. You can see how that functions using ldply passes once over every piece of data. After that, it combines everything back into a dataframe. Actually, in the help files of ldply is written:
I couldn't say it better myself. And miracle, the first sentence is to be found on the help page for ddply as well. | |||||
feedback
|
getAnywhere(), you'll need it) or wait until hadley passes by. – Joris Meys Nov 16 '10 at 6:30