modin.pandas.SeriesGroupBy.all¶
- SeriesGroupBy.all(skipna=True)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/.tox/docs/lib/python3.9/site-packages/modin/pandas/groupby.py#L1296-L1301)¶
Return True if all values in the group are 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 all elements are True within its respective group, False otherwise.
- Return type:
Examples
For SeriesGroupBy:
For DataFrameGroupBy: