attributeerror: 'dataframe' object has no attribute 'ix'
时间: 2023-05-01 20:01:31 浏览: 168
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
"Attributeerror: dataframe object has no attribute ix" 意思是说你在操作的 DataFrame 对象没有 "ix" 属性。"ix" 在早期版本的 pandas 中是用来索引行和列的,但是现在已经被弃用了,建议使用 loc 或 iloc 代替。
阅读全文