pandas.api.types.is_categorical_dtype # pandas.api.types。is_categorical_dtype ( arr_or_dtype ) [来源] # 检查类似数组或数据类型是否属于分类数据类型。 自版本 2.2.0 起已弃用:使用 isinstance(dtype, pd.CategoricalDtype) 代替。 参数: arr_or_dtype类数组或 dtype要检查的类似数组或数据类型。 返回: 布尔值类数组或数据类型是否属于分类数据类型。 例子 >>> from pandas.api.types import is_categorical_dtype >>> from pandas import CategoricalDtype >>> is_categorical_dtype(object) False >>> is_categorical_dtype(CategoricalDtype()) True >>> is_categorical_dtype([1, 2, 3]) False >>> is_categorical_dtype(pd.Categorical([1, 2, 3])) True >>> is_categorical_dtype(pd.CategoricalIndex([1, 2, 3])) True