pandas.api.types.is_timedelta64_ns_dtype#

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

检查提供的数组或dtype是否为timedelta64[ns] dtype。

这是一个非常特定的数据类型,因此像 np.timedelta64 这样的通用类型如果在传递给此函数时将返回 False。

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

要检查的数组或数据类型。

返回:
布尔值

数组或dtype是否为timedelta64[ns] dtype。

参见

api.types.is_timedelta64_dtype

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

例子

>>> from pandas.core.dtypes.common import is_timedelta64_ns_dtype
>>> is_timedelta64_ns_dtype(np.dtype("m8[ns]"))
True
>>> is_timedelta64_ns_dtype(np.dtype("m8[ps]"))  # Wrong frequency
False
>>> is_timedelta64_ns_dtype(np.array([1, 2], dtype="m8[ns]"))
True
>>> is_timedelta64_ns_dtype(np.array([1, 2], dtype=np.timedelta64))
False