提取dataframe某个数的索引
时间: 2023-11-18 15:33:26 浏览: 59
对pandas通过索引提取dataframe的行方法详解
你可以使用 pandas 的 .loc() 函数来提取 dataframe 中某个数的索引,例如:
df = pd.DataFrame({'A':[1, 2, 3], 'B':[4, 5, 6]})
index = df.loc[df['B'] == 5].index
这将返回索引为 1 的行。
阅读全文
对pandas通过索引提取dataframe的行方法详解