pandas.api.types.is_categorical_dtype#
- pandas.api.types.is_categorical_dtype(arr_or_dtype)[源代码][源代码]#
检查一个类数组或dtype是否属于Categorical dtype。
自 2.2.0 版本弃用: 请使用 isinstance(dtype, pd.CategoricalDtype) 代替。
- 参数:
- arr_or_dtype类似数组或数据类型
要检查的类数组或 dtype。
- 返回:
- 布尔值
数组类或dtype是否属于Categorical 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