xorbits.pandas.groupby.SeriesGroupBy.sum#
- SeriesGroupBy.sum(**kw)#
Compute sum of group values.
- Parameters
numeric_only (bool, default True (Not supported yet)) – Include only float, int, boolean columns. If None, will attempt to use everything, then use only numeric data.
min_count (int, default 0 (Not supported yet)) – The required number of valid values to perform the operation. If fewer than
min_countnon-NA values are present the result will be NA.
- Returns
Computed sum of values within each group.
- Return type
This docstring was copied from pandas.core.groupby.generic.SeriesGroupBy.