pandas.api.types.is_complex_dtype#

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

检查提供的数组或 dtype 是否为复数 dtype。

Parameters:
arr_or_dtypearray-like or dtype

要检查的数组或 dtype。

Returns:
boolean

数组或 dtype 是否为复数 dtype。

Examples

>>> from pandas.api.types import is_complex_dtype
>>> is_complex_dtype(str)
False
>>> is_complex_dtype(int)
False
>>> is_complex_dtype(np.complex128)
True
>>> is_complex_dtype(np.array(['a', 'b']))
False
>>> is_complex_dtype(pd.Series([1, 2]))
False
>>> is_complex_dtype(np.array([1 + 1j, 5]))
True