pandas.api.types.is_numeric_dtype #

pandas.api.types。is_numeric_dtype ( arr_or_dtype ) [来源] #

检查提供的数组或数据类型是否为数字数据类型。

参数
arr_or_dtype类数组或 dtype

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

返回
布尔值

数组或数据类型是否为数字数据类型。

例子

>>> from pandas.api.types import is_numeric_dtype
>>> is_numeric_dtype(str)
False
>>> is_numeric_dtype(int)
True
>>> is_numeric_dtype(float)
True
>>> is_numeric_dtype(np.uint64)
True
>>> is_numeric_dtype(np.datetime64)
False
>>> is_numeric_dtype(np.timedelta64)
False
>>> is_numeric_dtype(np.array(['a', 'b']))
False
>>> is_numeric_dtype(pd.Series([1, 2]))
True
>>> is_numeric_dtype(pd.Index([1, 2.]))
True
>>> is_numeric_dtype(np.array([], dtype=np.timedelta64))
False