2 Star 0 Fork 1

汪子健/simles

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
combine.py 612 Bytes
一键复制 编辑 原始数据 按行查看 历史
“qunshanxingyun” 提交于 2024-02-21 12:55 . combine.py added
import pandas as pd
# 载入第一个Excel文件
df1 = pd.read_excel('文献信息-V1.xlsx')
# 载入第二个Excel文件
df2 = pd.read_excel('VL化合物信息.xlsx')
# 统一大小写,使列标签一致
df1.columns = df1.columns.str.lower()
df2.columns = df2.columns.str.lower()
# 合并
combined_df = pd.concat([df1, df2], ignore_index=True)
# 修改DOI
combined_df['doi'] = combined_df['doi'].str.strip('https://')
combined_df['doi'] = combined_df['doi'].str.strip('DOI: ')
combined_df['doi'] = combined_df['doi'].str.strip('doi.org/')
# 导出
combined_df.to_excel('combined_file.xlsx', index=False)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wzjahucm/simles.git
git@gitee.com:wzjahucm/simles.git
wzjahucm
simles
simles
master

搜索帮助