modin.pandas.SeriesGroupBy.any¶
- SeriesGroupBy.any(skipna: bool = True)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.19.0/src/snowflake/snowpark/modin/pandas/groupby.py#L191-L197)¶
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:
DataFrameor Series of boolean values, where a value is True if any element is True within its respective group, False otherwise.- Return type:
Series or
DataFrame
Examples
For SeriesGroupBy:
For DataFrameGroupBy: