AttributeError: 'DataFrame' object has no attribute 'append'. Did you mean: '_append'?
时间: 2023-10-28 07:06:40 浏览: 21
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误提示意味着你尝试在 pandas 的 DataFrame 对象上调用 `append` 方法,但是 DataFrame 对象没有该属性,可能是因为你使用了过时的语法。建议使用 `concat` 或 `append` 方法的新语法来合并 DataFrame 对象。例如,使用 `pd.concat([df1, df2])` 或 `df1.append(df2)` 来合并两个 DataFrame 对象。
阅读全文