作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下两个 pandas 数据框:
df1 = pd.DataFrame([[21,80,180],[23,95,191],[36,83,176]], columns = ["age", "weight", "height"])
df2 = pd.DataFrame([[22,88,184],[39,84,196],[23,95,190]], columns = ["age", "weight", "height"])
df1:
age weight height
0 21 80 180
1 23 95 191
2 36 83 176
df2:
age weight height
0 22 88 184
1 39 84 196
2 23 95 190
我想比较两个数据帧并获取两个数据帧的索引,其中 age
和weight
在一个数据帧中等于 age
和weight
在第二个数据框中。在这种情况下的结果将是:
matching_indices = [1,2] #[df1 index, df2 index]
我知道如何通过 iterrows()
来实现这一点,但我更喜欢耗时较少的东西,因为我拥有的数据集相对较大。你有什么想法吗?
最佳答案
使用merge
使用默认内部联接和 reset_index
将索引转换为列以防止丢失此信息:
df = df1.reset_index().merge(df2.reset_index(), on=['age','weight'], suffixes=('_df1','_df2'))
print (df)
index_df1 age weight height_df1 index_df2 height_df2
0 1 23 95 191 2 190
print (df[['index_df1','index_df2']])
index_df1 index_df2
0 1 2
关于python - 如何根据两个不同的 pandas 数据框中的两列查找相同行的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54302564/
现在我正在尝试实现 flash programming specification对于 PIC32MX。我正在使用 PIC32MX512L 和 PIC32MX512H。 PIC32MX512L最终必须
我是一名优秀的程序员,十分优秀!