AttributeError: 'numpy.ndarray' object has no attribute 'dropna'
时间: 2023-10-23 21:12:18 浏览: 139
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这是一个错误提示,它意味着你在一个 numpy.ndarray 对象上使用了 dropna 方法,这是不允许的,因为 numpy 中的数组没有这个方法。dropna 方法是 pandas 库中的方法,用于删除数组中的缺失值。如果你想在 numpy 数组中删除缺失值,可以使用 numpy.isnan 函数来实现。
阅读全文