AttributeError: 'DataFrame' object has no attribute 'Survived'
时间: 2023-06-22 22:23:07 浏览: 199
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常发生在使用 Pandas DataFrame 对象时,其中该 DataFrame 对象没有名为 "Survived" 的属性。这可能是因为您的 DataFrame 对象的列名不正确,或者您可能正在访问不存在的列。请确保您的 DataFrame 对象中包含名为 "Survived" 的列,并且该列名拼写正确。您可以使用 .head() 方法查看 DataFrame 对象的前几行,以确保列名正确。
阅读全文