成功解决AttributeError: 'DataFrame' object has no attribute 'ix'
目录
解决问题
return object.__getattribute__(self, name)
AttributeError: 'DataFrame' object has no attribute 'ix'
解决思路
属性错误:“DataFrame”对象没有属性“ix”
解决方法
版本升级导致,在pandas的1.0.0版本开始,移除了Series.ix and DataFrame.ix 方法
使用DataFrame的loc方法或者iloc方法进行替换!
哈哈,大功告成!