pandas.api.types.is_float_dtype#

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

检查提供的数组或dtype是否为浮点型dtype。

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

要检查的数组或 dtype。

返回:
布尔

数组或dtype是否为浮点型dtype。

例子

>>> from pandas.api.types import is_float_dtype
>>> is_float_dtype(str)
False
>>> is_float_dtype(int)
False
>>> is_float_dtype(float)
True
>>> is_float_dtype(np.array(["a", "b"]))
False
>>> is_float_dtype(pd.Series([1, 2]))
False
>>> is_float_dtype(pd.Index([1, 2.0]))
True