PERF: Discrepancy in groupby methods #19165
Labels
Groupby
Master Tracker
High level tracker for similar issues
Performance
Memory or execution speed performance
xref #8426 and comment
issue filter for groupby & perf
.describe()
.mad()
.pct_change()
(Cythonized GroupBy pct_change #19919).rank()
(PERF: cythonize groupby-rank #15779) (PERF: Cythonize Groupby Rank #19481).all()
and.any()
(Boolean operations in groupby objects are extremely slow compared to numpy counterpart. #15435)fillna()
(PERF: groupby-fillna perf, implement in cython #11296) (Cythonized GroupBy Fill #19673)mode()
(Groupby.mode() - feature request #19254)Some groupby methods (notably
describe
,mad
,pct_change
) are not as performant as others. Many of the less performant methods are pre-generated in a_common_apply_whitelist
inpandas/core/groupby.py
, so it may be worthwhile to revisit this implementation.The text was updated successfully, but these errors were encountered: