Does anyone know a slick way to order the results coming out of a ddply summarise operation?

This is what I'm doing to get the output ordered by descending depth.

  ddims <- ddply(diamonds, .(color), summarise, depth = mean(depth), table = mean(table))
  ddims <- ddims[order(-ddims$depth),]

With output...

> ddims
  color    depth    table
7     J 61.88722 57.81239
6     I 61.84639 57.57728
5     H 61.83685 57.51781
4     G 61.75711 57.28863
1     D 61.69813 57.40459
3     F 61.69458 57.43354
2     E 61.66209 57.49120

Not too ugly, but I'm hoping for a way do it nicely within ddply(). Anyone know how?

Hadley's ggplot2 book has this example for ddply and subset but it's not actually sorting the output, just selecting the two smallest diamonds per group.

ddply(diamonds, .(color), subset, order(carat) <= 2)
link|improve this question

1  
Look at the arrange function – hadley Apr 30 '11 at 13:10
I'm not sure there's something you can do "on the fly" -- but just a random note, instead of ddims[order(-ddims$depth),], you might try ddims[order(ddims$depth, decreasing=TRUE),]. This way you don't have to make a new 'negative' vector object. – Steve Lianoglou Apr 30 '11 at 18:16
feedback

1 Answer

up vote 1 down vote accepted

I'll use this occasion to advertise a bit for data.table, which is faster to run and (in my perception) at least as elegant to write:

library(data.table)
ddims <- data.table(diamonds)
system.time(ddims <- ddims[, list(depth=mean(depth), table=mean(table)), by=color][order(depth)])

   user  system elapsed 
  0.003   0.000   0.004 

By contrast, without ordering, your ddply code already takes 30 times longer:

  user  system elapsed 
 0.106   0.010   0.119

With all the respect I have for Hadley's excellent work, e.g. on ggplot2, and general awesomeness, I must confess that for me, data.table entirely replaced ddply -- for speed reasons.

link|improve this answer
Thanks mate. I was unaware of the data.table package. Looks mighty quick and that's quite readable too. I'll be playing with some big data sets in the near future, so thanks for that. I'm going to wait to see if anyone chimes in with a ddply specific answer. – Tommy O'Dell Apr 30 '11 at 8:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.