df2 = df2.append(df1, ignore_index=True)将df1作为行添加到df2中时,提示'DataFrame' object has no attribute 'append'
时间: 2024-06-12 12:01:39 浏览: 137
pandas 中dataframe对象增加行与 dataframe对象修改
如果您在使用 'DataFrame' object 的时候提示 'DataFrame' object has no attribute 'append' 的话,有可能是您的 pandas 版本太低。这个方法在新版的 pandas 中已经被弃用了。您可以使用concat()函数来实现行添加操作,例如:df2 = pd.concat([df2, df1], ignore_index=True)。这个函数的第一个参数是要拼接的 DataFrame 列表,第二个参数 ignore_index=True 表示忽略原有索引并重新生成新的索引。
阅读全文