first_idx = int(np.transpose((column_vals > -0).nonzero())[0]) IndexError: index 0 is out of bounds for axis 0 with size 0
时间: 2024-05-25 08:13:15 浏览: 105
这个错误提示意味着你尝试在长度为0的数组上访问第0个元素。这通常发生在使用空的数组或者索引超出了数组范围的情况下。
在这个具体的错误中,`np.transpose((column_vals > -0).nonzero())`返回的是一个长度为0的数组,因此无法访问它的第0个元素。你可以检查一下`column_vals`数组是否为空,或者尝试修改代码以避免出现长度为0的数组。
阅读全文