Python|熊猫索引.get_slice_bound()
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Index.get_slice_bound()
函数计算与给定标签对应的切片边界并返回值。如果side 参数设置为left,则该函数返回给定标签的最左边位置,如果side 参数设置为right,则返回标签最右边的位置。
Syntax: Index.get_slice_bound(label, side, kind)
Parameters:
label : object
side : {‘left’, ‘right’}
kind : {‘ix’, ‘loc’, ‘getitem’}
Returns : value of the bound
示例 #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,因为这是传递值的位置,也是传递值的左侧切片的位置。