modin.pandas.DataFrameGroupBy.any¶
- DataFrameGroupBy.any(skipna=True)[source]¶
Return True if any value in the group is truthful, else False.
- Parameters:
skipna (bool, default True) – 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:
Examples
For SeriesGroupBy:
For DataFrameGroupBy: