成功解决AttributeError: ‘DataFrame‘ object has no attribute ‘ix‘
作者:互联网
成功解决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方法进行替换!
哈哈,大功告成!
标签:ix,no,attribute,object,DataFrame,AttributeError 来源: https://blog.csdn.net/qq_41185868/article/details/110296224