Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。
Pandas TimedeltaIndex.get_slice_bound()
函数计算与给定标签对应的切片范围。该函数返回给定标签的最左位置(如果side =='right',则为one-past-the-rightmost)位置。
用法: TimedeltaIndex.get_slice_bound(label, side, kind)
参数:
label: Object
side:{'左右'}
kind:{“ ix”,“ loc”,“ getitem”}
返回:整型
范例1:采用TimedeltaIndex.get_slice_bound()
函数在给定的TimedeltaIndex对象中查找值的左切片边界。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(data =['3 days 06:05:01.000030', '1 days 06:05:01.000030',
'3 days 06:05:01.000030', '1 days 02:00:00',
'21 days 06:15:01.000030'])
# Print the TimedeltaIndex object
print(tidx)
输出:
现在我们将使用TimedeltaIndex.get_slice_bound()
函数以查找“ 1天02:00:00”的左边界。
# find the left slice bound for passed value
tidx.get_slice_bound('1 days 02:00:00', side ='left', kind ='loc')
输出:
正如我们在输出中看到的,TimedeltaIndex.get_slice_bound()
函数已返回3作为给定TimedeltaIndex对象中传递的值的切片边界。
范例2:采用TimedeltaIndex.get_slice_bound()
函数在给定的TimedeltaIndex对象中查找值的左切片边界。
输出:
正如我们在输出中看到的,TimedeltaIndex.get_slice_bound()
函数已返回4作为给定TimedeltaIndex对象中传递的值的切片边界。
相关用法
- 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 TimedeltaIndex.get_slice_bound。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。