[ENH] Method for adding functionality to GroupBy #587
Labels
available for hacking
This issue has not been claimed by any individual.
enhancement
New feature or request
good advanced issue
Issues that would require Python trickery to get an elegant implementation
good intermediate issue
Issues that are good for seasoned programmers to make a contribution
It would be nice to be able to add functionality to the Pandas
GroupBy
objects:GroupBy
,DataFrameGroupBy
,SeriesGroupBy
. There's no convenient accessor interface to do this, but maybe there's a way to reliably monkeypatch them. This would allow us to create nifty aggregation / apply functions and avoid the.groupby(...).apply()
route for tasks we may encounter routinely. It could also potentially open up opportunities to speed up such operations....groupby().apply()
can often be slow for large numbers of groups.The text was updated successfully, but these errors were encountered: