idata.frame | R Documentation |
An immutable data frame works like an ordinary data frame, except that when you subset it, it returns a reference to the original data frame, not a a copy. This makes subsetting substantially faster and has a big impact when you are working with large datasets with many groups.
idata.frame(df)
df |
a data frame |
This method is still a little experimental, so please let me know if you run into any problems.
an immutable data frame
system.time(dlply(baseball, "id", nrow))
system.time(dlply(idata.frame(baseball), "id", nrow))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.