pandas.Index.inferred_type#
- Index.inferred_type[源代码]#
返回从值推断出的类型字符串。
参见
Index.dtype
返回底层数据的 dtype 对象。
例子
>>> idx = pd.Index([1, 2, 3]) >>> idx Index([1, 2, 3], dtype='int64') >>> idx.inferred_type 'integer'
返回从值推断出的类型字符串。
参见
Index.dtype
返回底层数据的 dtype 对象。
例子
>>> idx = pd.Index([1, 2, 3])
>>> idx
Index([1, 2, 3], dtype='int64')
>>> idx.inferred_type
'integer'