📜  Python|熊猫索引.itemsize

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

Python|熊猫索引.itemsize

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

Pandas Index.itemsize属性返回给定 Index 对象中基础数据项的 dtype 的大小。

示例 #1:使用Index.itemsize属性找出给定 Index 对象中基础数据的 dtype 的大小。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['Melbourne', 'Sanghai', 'Lisbon', 'Doha', 'Moscow'])
  
# Print the index
print(idx)

输出 :

现在我们将使用Index.itemsize属性来找出给定 Index 对象中基础数据的 dtype 的大小。

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

输出 :

在输出中我们可以看到, Index.itemsize属性返回了 8,表示索引对象中底层数据的 dtype 的大小为 8。示例#2:使用Index.itemsize属性找出给定 Index 对象中基础数据的 dtype 的大小。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index([900 + 3j, 700 + 25j, 620 + 10j, 388 + 44j, 900])
  
# Print the index
print(idx)

输出 :

现在我们将使用Index.itemsize属性来找出给定 Index 对象中基础数据的 dtype 的大小。

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

输出 :

在输出中我们可以看到, Index.itemsize属性返回了 8,表示索引对象中底层数据的 dtype 的大小为 8。