xorbits.pandas.groupby.SeriesGroupBy.min#
- SeriesGroupBy.min(**kw)#
Compute min of group values.
- Parameters
numeric_only (bool, default False (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 -1 (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 min of values within each group.
- Return type
This docstring was copied from pandas.core.groupby.generic.SeriesGroupBy.