A value is trying to be set on a copy of a slice from a DataFrame
遇到的问题以及报错代码
背景:遍历一堆excel,再遍历excel每一行中的某一个列的值,如果符合一些条件要将其值改变。
遇到的问题就是:对于大部分excel文件都很顺利,对于极少数excel运行过程中首先会示警而且在某些excel符合条件的对应位置的值没有改变。
代码:
data = new_file.iloc[i]["属性组"]
if data == 'nan'or data=='NaN' :
new_file.iloc[i]["属性组"] = container
解决方案
修改代码,使用.loc[ ]而不是.iloc[ ][ ],改为如下代码:
if data == 'nan'or data=='NaN' :
new_file.loc[i, "属性组"] = container
print(new_file.iloc[i]["属性组"])
print以后能看到相应位置的值确实发生了改变。
参考资料
[1]https://note.nkmk.me/en/python-pandas-setting-with-copy-warning/