xorbits.pandas.groupby.DataFrameGroupBy.size#

DataFrameGroupBy.size(**kw)#

Compute group sizes.

Returns

Number of rows in each group as a Series if as_index is True or a DataFrame if as_index is False.

Return type

DataFrame or Series

See also

Series.groupby

Apply a function groupby to a Series.

DataFrame.groupby

Apply a function groupby to each row or column of a DataFrame.

This docstring was copied from pandas.core.groupby.generic.DataFrameGroupBy.