pandas.Index.is_boolean — pandas 2.2.3 documentation (original) (raw)
final Index.is_boolean()[source]#
Check if the Index only consists of booleans.
Deprecated since version 2.0.0: Use pandas.api.types.is_bool_dtype instead.
Returns:
bool
Whether or not the Index only consists of booleans.
See also
Check if the Index only consists of integers (deprecated).
Check if the Index is a floating type (deprecated).
Check if the Index only consists of numeric data (deprecated).
Check if the Index is of the object dtype (deprecated).
Check if the Index holds categorical data.
Check if the Index holds Interval objects (deprecated).
Examples
idx = pd.Index([True, False, True]) idx.is_boolean()
True
idx = pd.Index(["True", "False", "True"]) idx.is_boolean()
False
idx = pd.Index([True, False, "True"]) idx.is_boolean()
False