当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Pandas TimedeltaIndex.get_slice_bound用法及代码示例


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对象中传递的值的切片边界。



相关用法


注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas TimedeltaIndex.get_slice_bound。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。