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?