xorbits.pandas.groupby.SeriesGroupBy.sum#

SeriesGroupBy.sum(**kw)#

Compute sum of group values.

Parameters
  • numeric_only (bool, default False (Not supported yet)) –

    Include only float, int, boolean columns.

    Changed in version 2.0.0(pandas): numeric_only no longer accepts None.

  • min_count (int, default 0 (Not supported yet)) – The required number of valid values to perform the operation. If fewer than min_count non-NA values are present the result will be NA.

Returns

  • Series or DataFrame – Computed sum of values within each group.

  • This docstring was copied from pandas.core.groupby.generic.SeriesGroupBy.