AttributeError: 'list' object has no attribute 'iloc'
时间: 2023-06-21 11:12:01 浏览: 957
python报错: list object has no attribute shape的解决
这个错误通常是因为你在 Pandas DataFrame 上使用了 `iloc` 方法,但是你的数据实际上是一个列表(list)。`iloc` 方法只能用于 DataFrame 和 Series 对象。
请确保你的数据类型是 Pandas DataFrame 或 Series,如果不是,你需要将列表转换成 DataFrame 或 Series 对象。你可以使用 Pandas 的 `DataFrame()` 或 `Series()` 方法来进行转换。
阅读全文