📜  Python|熊猫索引.dtype

📅  最后修改于: 2022-05-13 01:55:00.872000             🧑  作者: Mango

Python|熊猫索引.dtype

Pandas Index 是一个不可变的 ndarray,它实现了一个有序的、可切片的集合。它是存储所有 pandas 对象的轴标签的基本对象。

Pandas Index.dtype属性返回给定 Index 对象的基础数据的数据类型(dtype)。

示例 #1:使用Index.dtype属性查找给定 Index 对象的基础数据的 dtype。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May'])
  
# Print the index
print(idx)

输出 :

现在我们将使用Index.dtype属性来查找给定系列对象的基础数据的数据类型。

# return the dtype
result = idx.dtype
  
# Print the result
print(result)

输出 :

正如我们在输出中看到的那样, Index.dtype属性已返回object作为给定 Index 对象的基础数据的数据类型。

示例 #2:使用Index.dtype属性查找给定 Index 对象的基础数据的 dtype。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index([100, 200, 142, 88, 124])
  
# Print the index
print(idx)

输出 :

现在我们将使用Index.dtype属性来查找给定系列对象的基础数据的数据类型。

# return the dtype
result = idx.dtype
  
# Print the result
print(result)

输出 :

正如我们在输出中看到的, Index.dtype属性已返回int64作为给定 Index 对象的基础数据的数据类型。