I\'m trying to get multiple summary statistics in R/S-PLUS grouped by categorical column in one shot. I found couple of functions, but all of them do one statistic per call,
There's many different ways to go about this, but I'm partial to describeBy in the psych package:
describeBy
psych
describeBy(df$dt, df$group, mat = TRUE)