xorbits.pandas.groupby.SeriesGroupBy.any#
- SeriesGroupBy.any(**kw)#
Return True if any value in the group is truthful, else False.
- Parameters
skipna (bool, default True (Not supported yet)) – Flag to ignore nan values during truth testing.
- Returns
DataFrame or Series of boolean values, where a value is True if any element is True within its respective group, False otherwise.
- Return type
See also
Series.groupbyApply a function groupby to a Series.
DataFrame.groupbyApply a function groupby to each row or column of a DataFrame.
This docstring was copied from pandas.core.groupby.generic.SeriesGroupBy.