xorbits.pandas.groupby.SeriesGroupBy.prod#

SeriesGroupBy.prod(**kw)#

Compute prod 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_count non-NA values are present the result will be NA.

Returns

Computed prod of values within each group.

Return type

Series or DataFrame

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