pandas.api.types.is_interval_dtype # pandas.api.types。is_interval_dtype ( arr_or_dtype ) [来源] # 检查类似数组或数据类型是否属于间隔数据类型。 自版本 2.2.0 起已弃用:使用 isinstance(dtype, pd.IntervalDtype) 代替。 参数: arr_or_dtype类数组或 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