Python Pandas Index.nbytes
Pandas Index是一个不可变的ndarray,实现了一个有序的、可切分的集合。它是存储所有pandas对象的轴标签的基本对象。
Pandas Index.bytes属性返回存储给定索引对象的基础数据所需的字节数。
语法: Index.nbytes
参数:无
返回:存储数据所需的字节数。
例子#1:使用Index.bytes属性来找出存储给定Index对象的底层数据所需的字节数。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Melbourne', 'Sanghai', 'Lisbon', 'Doha', 'Moscow', 'Rio'])
# Print the index
print(idx)
输出 :
现在我们将使用Index.bytes属性来找出在给定Index对象中存储数据所需的字节数。
# return the number of bytes occupied
# by idx object
result = idx.nbytes
# Print the result
print(result)
输出 :
正如我们在输出中看到的,Index.bytes属性已经返回48,表明需要48个字节来存储给定的Index对象中的数据。
示例#2 :使用Index.bytes属性来找出存储给定Index对象的底层数据所需的字节数。
# 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.bytes属性来找出在给定Index对象中存储数据所需的字节数。
# return the number of bytes occupied
# by idx object
result = idx.nbytes
# Print the result
print(result)
输出 :
正如我们在输出中看到的,Index.bytes属性返回了40,表明需要40个字节来存储给定的Index对象中的数据。