AttributeError: DataFrame object has no attribute Survived
时间: 2023-10-02 11:04:47 浏览: 175
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这错误通常发生在你使用 Pandas DataFrame 对象时,尝试访问不存在的列。在你的情况下,你尝试访问名为 "Survived" 的列,但该列不存在于 DataFrame 对象中,因此会引发 AttributeError。你需要检查 DataFrame 中是否存在该列或者确认你使用的列名称是否正确。
阅读全文