GroupByΒΆ

Summary of DataFrameGroupBy methods for babypandas. DataFrameGroupBy objects are returned by groupby calls: DataFrame.groupby()

Click a method to see its documentation.

Calculations

DataFrameGroupBy.count() Compute count of group.
DataFrameGroupBy.mean() Compute mean of group.
DataFrameGroupBy.median() Compute median of group.
DataFrameGroupBy.min() Compute min of group.
DataFrameGroupBy.max() Compute max of group.
DataFrameGroupBy.sum() Compute sum of group.
DataFrameGroupBy.size() Compute group sizes.