You are viewing documentation about an older version (1.20.0). View latest version

modin.pandas.Index.all¶

Index.all() → None[source]¶

Return whether all elements are Truthy.

Parameters:
  • *args (Any) – Required for compatibility with numpy.

  • **kwargs (Any) – Required for compatibility with numpy.

Returns:

A single element array-like may be converted to bool.

Return type:

bool or array-like (if axis is specified)

See also

Index.any

Return whether any element in an Index is True.

Series.any

Return whether any element in a Series is True.

Series.all

Return whether all elements in a Series are True.

Notes

Not a Number (NaN), positive infinity and negative infinity evaluate to True because these are not equal to zero.