'Series' object has no attribute 'nonzero'
时间: 2023-05-12 19:04:51 浏览: 334
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误通常是因为你正在尝试在 Pandas 的 Series 对象上调用 'nonzero' 属性,但是该属性在 Series 对象中不存在。可能你想要使用 'values' 属性来获取 Series 对象的值,然后再调用 'nonzero' 方法。例如:series.values.nonzero()。
阅读全文