return object.__getattribute__(self, name) AttributeError: 'Series' object has no attribute 'append'. Did you mean: '_append'?
时间: 2023-12-07 13:38:38 浏览: 147
MSXMLDOM.rar_msxml_msxml.dll_msxmldom_xml_xml dll
这个错误提示表明在一个名为'Series'的对象上调用了'append'方法,但是该对象并没有'append'属性。相反,它建议你使用'_append'属性。这可能是因为'Series'对象没有'append'方法,或者你的代码中有一些错误导致它无法找到'append'方法。你可以尝试使用'_append'属性来代替'append'方法,或者检查你的代码中是否存在拼写错误或其他语法错误。
以下是一个例子,演示了如何使用'_append'属性来代替'append'方法:
```python
my_series = pd.Series([1, 2, 3])
my_series._append(pd.Series([4, 5, 6]))
```
阅读全文