'DataFrame' object has no attribute 'ix'什么意思
时间: 2023-06-22 20:35:44 浏览: 104
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误提示是因为在使用 Pandas 的 DataFrame 类型时,使用了 ix 属性,但是 ix 已经在 Pandas 的新版本中被弃用了,所以出现了这个错误。应该使用 loc 或 iloc 属性来替代 ix。 loc 是基于标签的索引,iloc 是基于位置的索引。例如,使用 df.loc[row_indexer, col_indexer] 或 df.iloc[row_indexer, col_indexer] 来访问 DataFrame 中的元素。
阅读全文