为了账号安全,请及时绑定邮箱和手机立即绑定

如何查找给定 Pandas 数据帧索引的位置索引?

如何查找给定 Pandas 数据帧索引的位置索引?

BIG阳 2023-09-26 17:13:41
在 Python Pandas 中,如何找到数据帧的数字索引?考虑以下示例。import pandas as pddf = pd.DataFrame(np.arange(20).reshape(5,4), index = np.arange(2,7),columns=["A","B","C","D"])Output:    A   B   C   D2   0   1   2   33   4   5   6   74   8   9  10  115  12  13  14  156  16  17  18  19如何找到df.index == 4的位置索引。答案应该是2。
查看完整描述

2 回答

?
梵蒂冈之花

TA贡献1900条经验 获得超5个赞

尝试.get_loc

In [4]: df.index.get_loc(4)
Out[4]: 2


查看完整回答
反对 回复 2023-09-26
?
烙印99

TA贡献1829条经验 获得超13个赞

检查get_indexer注意,这里的不同之处在于get_loc每次调用都会执行一个值,get_indexer您可以传递一个列表

df.index.get_indexer([4])
array([2], dtype=int64)


查看完整回答
反对 回复 2023-09-26
  • 2 回答
  • 0 关注
  • 105 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信