pandas.core.groupby.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
Series or DataFrame

DataFrame or Series of boolean values, where a value is True if any element is True within its respective group, False otherwise.

See also

Series.groupby

Apply a function groupby to a Series.

DataFrame.groupby

Apply a function groupby to each row or column of a DataFrame.

© 2008–2021, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/1.3.4/reference/api/pandas.core.groupby.DataFrameGroupBy.any.html