April 2015
Beginner to intermediate
504 pages
8h 36m
English
After the grouping is performed, we have the ability to perform either aggregate calculations on each group of data resulting in a single value from each group, or to apply a transformation to each item in a group and return the combined result for each group. We can also filter groups based on results of expressions to exclude the groups from being included in the combined results.
pandas allows the application of an aggregation function to each group of data. Aggregation is performed using the .aggregate() (or in short, .agg()) method of the GroupBy object. The parameter of .agg() is a reference to a function that is applied to each group. In the case of DataFrame, the function will be applied to ...
Read now
Unlock full access