Python Pandas Index.get_slice_bound()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.get_slice_bound()函数计算与给定标签相对应的分片边界,并返回该值。如果侧面参数设置为左,该函数返回给定标签的最左位置;如果侧面参数设置为右,该函数返回标签的最右位置的前一位。
语法: Index.get_slice_bound(label, side, kind)
参数:
label:对象
side : {‘left’, ‘right’}
kind: {‘ix’, ‘loc’, ‘getitem’}
返回:绑定的值
例子#1:使用Index.get_slice_bound()函数来查找所传递的值的右边分片边界。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['Labrador', 'Beagle', 'Labrador',
'Lhasa', 'Husky', 'Beagle'])
# Print the Index
idx
输出 :
让我们找出所传数值的片断边界。
# Print the right slice bound of the passed value..
idx.get_slice_bound('Lhasa', side ='right', kind ='getitem')
输出 :
正如我们在输出中看到的,Index.get_slice_bound()函数已经返回了4,因为这是索引中传递值的位置之后的一个位置。
示例#2:使用Index.get_slice_bound()函数来查找所传递的值的左片边界。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index([1, 2, 3, 14, 25, 37, 48, 69, 100])
# Print the Index
idx
输出 :
让我们找出索引中69号值的左片边界。
# Find the left slice bound of 69 in the Index.
idx.get_slice_bound(69, side ='left', kind ='getitem')
输出 :
我们可以看到,该函数已经返回了7的输出,因为这是传递值的位置,也是传递值的左片边界。