How would I replicate this with plyr
?
with(mtcars, tapply(mpg, cyl, summary))
With the same elegance, i.e. without spelling out the individual statistics?
library(plyr)
dlply(mtcars, .(cyl), function(x) summary(x$mpg))
You could also do this into a data.frame, which I generally prefer over complex lists...
ddply(mtcars, .(cyl), function(x) summary(x$mpg))
# cyl Min. 1st Qu. Median Mean 3rd Qu. Max.
# 1 4 21.4 22.80 26.0 26.66 30.40 33.9
# 2 6 17.8 18.65 19.7 19.74 21.00 21.4
# 3 8 10.4 14.40 15.2 15.10 16.25 19.2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With