Python Pandas - 获取请求标签的整数位置,如果没有完全匹配,则查找上一个索引值

pythonpandasserver side programmingprogramming

要获取请求标签的整数位置,如果没有完全匹配,则查找上一个索引值,请使用index.get_loc()。将参数method设置为值ffill

首先,导入所需的库 −

import pandas as pd

创建 Pandas 索引 −

index = pd.Index([10, 20, 30, 40, 50, 60, 70])

显示 Pandas 索引 −

print("Pandas Index...\n",index)

如果没有完全匹配,则获取上一个索引的位置。使用 get_loc() 的 "method" 参数将值设置为 "ffill" −

print("\n如果没有完全匹配,则获取前一个索引的位置...\n", index.get_loc(45, method="ffill"))

示例

以下是代码 −

import pandas as pd

# Creating Pandas index
index = pd.Index([10, 20, 30, 40, 50, 60, 70])

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\n索引中的元素数量...\n",index.size)

# get integer location from the given index
print("\n显示给定索引中的整数位置...\n",index.get_loc(20))
print("\n显示给定索引中的整数位置...\n",index.get_loc(50))

# 如果没有精确匹配,则获取前一个索引的位置
# 使用 get_loc() 的"method"参数设置"ffill"值
print("\nGet the location of the previous index if no exact match...\n", index.get_loc(45, method="ffill"))

输出

这将产生以下输出 −

Pandas Index...
Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64')

索引中的元素数量...
7

显示给定索引中的整数位置...
1

显示给定索引中的整数位置...
4

Get the location of the previous index if no exact match...
3

相关文章