xorbits.pandas.groupby.DataFrameGroupBy.min#

DataFrameGroupBy.min(**kw)#

Compute min 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 -1 (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 min of values within each group.

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