I have a data.frame (link to file) with 18 columns and 11520 rows that I transform like this:
library(plyr)
df.median<-ddply(data, .(groupname,starttime,fPhase,fCycle),
numcolwise(median), na.rm=TRUE)
according to system.time(), it takes about this long to run:
user system elapsed
5.16 0.00 5.17
This call is part of a webapp, so run time is pretty important. Is there a way to speed this call up?
ddply()is first and foremost convenient. If you need something fast you may need to reimplement the logic. – Dirk Eddelbuettel Oct 19 '10 at 19:03plyrwasn't designed primarily for performance, but for ease of use. As an example,llply(which underlies most of the other plyr functions) is several times slower thanlapply, even though the core functionality of both functions is the same. – Shane Oct 19 '10 at 19:25require(fortunes); fortune("dog")and substitute "data" :-) Also, for future reference, use a different extension than.Rfor asave()ed R object..rdais commonly used in R packages..Rusually means an R script. I spent a few minutes trying to figure out whatdata.Rwas before it dawned on me – Gavin Simpson Oct 19 '10 at 20:24