作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几周前我开始了我的 Python 之旅。我的主要目标是能够自动化我日常工作的某些方面,并在 future 更多地研究数据科学。现在,我正在尝试制作一个脚本,该脚本将检查 sheet1 中某个列上存在的值是否也存在于 sheet2 上。我设法到达这里:
import pandas as pd
from pandas import ExcelWriter
from pandas import ExcelFile
pd.set_option('display.max_columns', 500)
df = pd.ExcelFile('C:\\Users\\Andre\\Desktop\\Scraps\\abacus.xlsx')
sheet1 = pd.read_excel(df, 'Sheet1')
sheet2 = pd.read_excel(df, 'Sheet2')
print(type(df))
print(sheet1)
print(sheet2)
df['Ref'] = df.lookup(df.index, df[sheet2['Ref']])
最佳答案
考虑到您的代码:
df = pd.ExcelFile('C:\\Users\\Andre\\Desktop\\Scraps\\abacus.xlsx')
sheet1 = pd.read_excel(df, 'Sheet1')
sheet2 = pd.read_excel(df, 'Sheet2')
sheet1
和
sheet2
是各个工作表的数据框。
In [1898]: sheet1
Out[1898]:
id_col1 id_col2 name age sex
0 101 1M NaN 21 NaN
1 101 3M NaN 21 M
2 102 1M Mark 25 NaN
In [1899]: sheet2
Out[1899]:
id_col1 id_col2 name age sex
0 101 1M Steve NaN M
1 101 2M NaN NaN M
2 101 3M Steve 25.0 None
3 102 1M Ria 25.0 M
4 102 2M Anie 22.0 F
id_col1
存在于 sheet1 和 sheet2 中。
id_col1
的所有值是否来自 sheet1 的存在于
id_col1
表 2。
In [1900]: sheet1['id_col1'].isin(sheet2['id_col1'])
Out[1900]:
0 True
1 True
2 True
Name: id_col1, dtype: bool
for
循环并对所有列执行相同的操作:
In [1902]: for col in sheet1.columns.tolist():
...: print(sheet1[col].isin(sheet2[col]))
...:
0 True
1 True
2 True
Name: id_col1, dtype: bool
0 True
1 True
2 True
Name: id_col2, dtype: bool
0 True
1 True
2 False
Name: name, dtype: bool
0 False
1 False
2 True
Name: age, dtype: bool
0 False
1 True
2 False
Name: sex, dtype: bool
关于python - 我想使用 Python 检查 sheet1 中某个列上的值是否也存在于 sheet2 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61622687/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!