Currently there is a median
method on the Pandas's GroupBy
objects.
Is there is a way to calculate an arbitrary percentile
(see: http://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.percentile.html) on the groupings?
Median would be the calcuation of percentile with q=50
.