pandas.api.types.is_interval_dtype#

pandas.api.types.is_interval_dtype(arr_or_dtype)[源代码][源代码]#

检查一个类数组或dtype是否为Interval dtype。

自 2.2.0 版本弃用: 请使用 isinstance(dtype, pd.IntervalDtype) 代替。

参数:
arr_or_dtype类似数组或数据类型

要检查的类数组或 dtype。

返回:
布尔值

数组类或dtype是否为Interval dtype。

例子

>>> from pandas.core.dtypes.common import is_interval_dtype
>>> is_interval_dtype(object)
False
>>> is_interval_dtype(pd.IntervalDtype())
True
>>> is_interval_dtype([1, 2, 3])
False
>>>
>>> interval = pd.Interval(1, 2, closed="right")
>>> is_interval_dtype(interval)
False
>>> is_interval_dtype(pd.IntervalIndex([interval]))
True