pandas.api.types.is_period_dtype#
- pandas.api.types.is_period_dtype(arr_or_dtype)[源代码][源代码]#
检查一个类数组或dtype是否为Period dtype。
自 2.2.0 版本弃用: 请使用 isinstance(dtype, pd.Period) 代替。
- 参数:
- arr_or_dtype类数组或数据类型
要检查的类似数组或 dtype。
- 返回:
- 布尔值
数组类或dtype是否为Period dtype。
参见
api.types.is_timedelta64_ns_dtype
检查提供的数组或dtype是否为timedelta64[ns] dtype。
api.types.is_timedelta64_dtype
检查一个类数组或dtype是否为timedelta64 dtype。
示例
>>> from pandas.core.dtypes.common import is_period_dtype >>> is_period_dtype(object) False >>> is_period_dtype(pd.PeriodDtype(freq="D")) True >>> is_period_dtype([1, 2, 3]) False >>> is_period_dtype(pd.Period("2017-01-01")) False >>> is_period_dtype(pd.PeriodIndex([], freq="Y")) True