pandas 使用文本文件上的索引,将一列数字替换为另一个文本文件中的关联标签

watbbzwu  于 2022-11-20  发布在  其他
关注(0)|答案(1)|浏览(151)

我试图循环遍历数字列,并使用文本文件上的索引将a替换为另一个文本文件中的关联标签。

#conditions.txt has the labels while 'Reason for absence' has the numbers

with open('conditions.txt') as f:
    lines = f.readlines()
ds = pd.DataFrame(lines)
index=ds.index
print(index)

newname=df['Reason for absence'].copy()

for value in newname:
    for i in index:
        if value in newname == index :
            newname=ds
hmae6n7t

hmae6n7t1#

此问题似乎与另一个张贴的问题有关。虽然方法不同,但可能您正在寻找相同的最终结果。请查看此处提供的解决方案。如果解决方案没有帮助,请要求您提供错误消息。

相关问题