有这个问题 'numpy.ndarray' object has no attribute 'iloc'
时间: 2023-11-02 09:06:56 浏览: 384
将numpy.ndarray格式图像转化为_io.BufferedReader格式
这个错误通常是因为你正在尝试在 NumPy 数组上使用 Pandas 的 iloc(基于位置的索引)方法。iloc 只能在 Pandas 中使用,不能在 NumPy 中使用。如果你想在 NumPy 数组上执行基于位置的索引,请使用 numpy.take 方法。此外,你还需要确保将 NumPy 多维数组转换为 Pandas DataFrame 或 Series,这将允许你使用 iloc 方法。
阅读全文