我正在尝试从与列表中的值匹配的数据帧行中获取列号/索引。 我有这个:
pos=local.loc[[row_to_verify]].isin(global.index[global['cond'] == 'F'].tolist())
从这部分:
global.index[global['cond'] == 'F'].tolist()
我得到了 list=[1,3]
。我想使用这些值来选择 local[row_to_verify]
的哪些列与获取的列表中的值匹配。
答案 0 :(得分:0)
你能添加更具体的例子吗?最好的方法是查看您想要的 df 和输出。首先,我以为您想获取指定列中精确值的索引,但现在我看到您想要列号,但我看不到这个,示例会有所帮助。