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


Python cudf.IntervalIndex.get_loc用法及代码示例


用法:

IntervalIndex.get_loc(key, method=None, tolerance=None)

获取请求标签的整数位置、切片或布尔掩码。

参数

key标签
method{无,‘pad’/'fill',‘backfill’/'bfill',‘nearest’},可选
  • 默认值:仅完全匹配。
  • pad /ffill:如果没有完全匹配,则查找 PREVIOUS 索引值。
  • backfill /bfill:如果没有完全匹配,则使用 NEXT 索引值。
  • 最近:如果没有完全匹配,则使用 NEAREST 索引值。通过首选较大的索引值来打破束缚距离。
toleranceint 或 float,可选

与不精确匹配的索引值的最大距离。匹配位置的索引值必须满足等式 abs(index[loc] - key) <= tolerance

返回

int 或 slice 或 boolean 掩码
  • 如果结果是唯一的,则返回整数索引
  • 如果 index 是单调的,则 loc 作为切片对象返回
  • 否则,返回一个布尔掩码

例子

>>> unique_index = cudf.Index(list('abc'))
>>> unique_index.get_loc('b')
1
>>> monotonic_index = cudf.Index(list('abbc'))
>>> monotonic_index.get_loc('b')
slice(1, 3, None)
>>> non_monotonic_index = cudf.Index(list('abcb'))
>>> non_monotonic_index.get_loc('b')
array([False,  True, False,  True])
>>> numeric_unique_index = cudf.Index([1, 2, 3])
>>> numeric_unique_index.get_loc(3)
2

相关用法


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