AttributeError: 'DataFrame' object has no attribute 'ix'
时间: 2023-10-19 09:06:17 浏览: 34
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
在最新的 pandas 版本中,ix 已被弃用。可以使用 loc 或 iloc 来替代。
如果你想使用 ix,可以考虑降低 pandas 的版本。如果你要使用 loc 或 iloc,可以将 ix 替换为 loc 或 iloc。比如,将 df.ix[1, 2] 替换为 df.iloc[1, 2] 或 df.loc[1, 2]。
阅读全文