Files
developer-roadmap/roadmaps/python-data-analysis/content/groupby--aggregation@KnSv5dPToipoz2RF1dDnO.md
T
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

783 B

Groupby & Aggregation

groupby() splits a DataFrame into groups based on one or more columns, applies a function to each group, and combines the results. Common aggregation functions include sum(), mean(), count(), min(), max(), and custom functions via agg(). This split-apply-combine pattern is one of the most powerful features of Pandas.

Visit the following resources to learn more: