用法:
Index.get_loc(key, method=None, tolerance=None)
获取请求标签的整数位置、切片或布尔掩码。
- key:标签
- method:{无,‘pad’/'ffill',‘backfill’/'bfill',‘nearest’},可选
默认值:仅精确匹配。
pad /ffill:如果没有完全匹配,则查找 PREVIOUS 索引值。
backfill /bfill:如果没有完全匹配,则使用 NEXT 索引值
最近:如果没有完全匹配,则使用 NEAREST 索引值。通过首选较大的索引值来打破束缚距离。
- tolerance:int 或 float,可选
与不精确匹配的索引值的最大距离。匹配位置的索引值必须满足等式
abs(index[loc] - key) <= tolerance
。
- loc:如果是唯一索引则为 int,如果为单调索引则为 slice,否则为 mask
参数:
返回:
例子:
>>> unique_index = pd.Index(list('abc')) >>> unique_index.get_loc('b') 1
>>> monotonic_index = pd.Index(list('abbc')) >>> monotonic_index.get_loc('b') slice(1, 3, None)
>>> non_monotonic_index = pd.Index(list('abcb')) >>> non_monotonic_index.get_loc('b') array([False, True, False, True])
相关用法
- Python pandas.Index.get_level_values用法及代码示例
- Python pandas.Index.get_indexer_for用法及代码示例
- Python pandas.Index.get_indexer用法及代码示例
- Python pandas.Index.value_counts用法及代码示例
- Python pandas.Index.argmin用法及代码示例
- Python pandas.Index.is_categorical用法及代码示例
- Python pandas.Index.to_series用法及代码示例
- Python pandas.Index.str用法及代码示例
- Python pandas.Index.to_numpy用法及代码示例
- Python pandas.Index.is_object用法及代码示例
- Python pandas.Index.slice_indexer用法及代码示例
- Python pandas.Index.is_interval用法及代码示例
- Python pandas.Index.notnull用法及代码示例
- Python pandas.Index.equals用法及代码示例
- Python pandas.Index.set_names用法及代码示例
- Python pandas.Index.searchsorted用法及代码示例
- Python pandas.Index.duplicated用法及代码示例
- Python pandas.Index.is_monotonic_increasing用法及代码示例
- Python pandas.Index.min用法及代码示例
- Python pandas.Index.is_monotonic_decreasing用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Index.get_loc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。