当前位置: 代码迷 >> 综合 >> python concat ValueError: Shape of passed values is indices imply
  详细解决方案

python concat ValueError: Shape of passed values is indices imply

热度:106   发布时间:2023-09-29 18:19:34.0

使用pd.concat产生报错

python concat ValueError: Shape of passed values is indices imply

主要原因是合并的多个df对象中,index有存在重复的对象,从而导致合并时,必须舍弃相应对象,但是函数本身没有这个功能,所以报错

解决方案:
将涉及的多个df中index重新看一遍,有重复的,需要删除掉

  相关解决方案