Python Pandas Index.strides
Pandas Index是一个不可变的ndarray,实现了一个有序的、可切分的集合。它是存储所有pandas对象的轴标签的基本对象。
Pandas Index.strides属性返回给定索引对象的基础数据的步长。基本上,它返回一个字节的元组,在遍历索引时,在每个维度上步入。
语法: Index.strides
参数:无
返回:步数
例子#1:使用Index.strides属性在给定的Index对象中找到基础数据的strides。
# 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.strides属性来查找给定Index对象中基础数据的strides。
# return the number of strides
result = idx.strides
# Print the result
print(result)
输出 :
正如我们在输出中看到的,Index.strides属性已经返回了给定Index对象中的底层数据的strides。
示例#2 :使用Index.strides属性在给定的Index对象中查找基础数据的strides。
# 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.strides属性来查找给定Index对象中基础数据的strides。
# return the number of strides
result = idx.strides
# Print the result
print(result)
输出 :
正如我们在输出中看到的,Index.strides属性已经返回了给定Index对象中的底层数据的strides。