Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。
Pandas Index.get_slice_bound()
函数计算与给定标签对应的切片范围,并返回该值。如果将side参数设置为left,该函数将返回给定标签的最左侧位置;如果将side参数设置为right,则该函数将返回one-past标签的最右侧位置。
用法: Index.get_slice_bound(label, side, kind)
参数:
label: Object
side:{'左右'}
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,因为它比索引中传递的值的位置高1。
范例2:采用Index.get_slice_bound()
函数查找传递的值的左切片边界。
输出:
如我们所见,该函数已返回输出7,因为这是传递值的位置以及绑定到传递值的左切片的位置。
相关用法
- Python pandas.map()用法及代码示例
- Python Pandas Series.all()用法及代码示例
- Python Pandas TimedeltaIndex.max用法及代码示例
- Python Pandas Series.le()用法及代码示例
- Python Pandas Series.eq()用法及代码示例
- Python Pandas Series.ne()用法及代码示例
- Python Pandas Series.ge()用法及代码示例
- Python Pandas Series.lt()用法及代码示例
- Python Pandas Series.abs()用法及代码示例
- Python Pandas Series.sum()用法及代码示例
- Python Pandas DataFrame.ix[ ]用法及代码示例
- Python Pandas dataframe.sub()用法及代码示例
- Python Pandas Timestamp.day用法及代码示例
- Python Pandas Series.str.pad()用法及代码示例
注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas Index.get_slice_bound()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。