错误描述:
错误原因:
可能是在建立数据库索引时候,运行了好几遍代码,导致每次运行时候都会再建立一个索引,index中出现重复值
解决办法:
#查看是否有重复索引
if_double=df.index.duplicated()
print(if_double)
输出:
若有返回”True“,则表明有重复索引
查看重复行
if_double=df.index.duplicated()
print(df[if_double])
输出:
可以看到有许多相似的值
接着文章来源:https://www.toymoban.com/news/detail-624356.html
#反向去重
df=df[~df.index.duplicated()]
文章来源地址https://www.toymoban.com/news/detail-624356.html
到了这里,关于ValueError: cannot reindex on an axis with duplicate labels 解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!