我试图循环遍历数字列,并使用文本文件上的索引将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
1条答案
按热度按时间hmae6n7t1#
此问题似乎与另一个张贴的问题有关。虽然方法不同,但可能您正在寻找相同的最终结果。请查看此处提供的解决方案。如果解决方案没有帮助,请要求您提供错误消息。