'list' object has no attribute 'loc'
时间: 2023-06-17 14:07:52 浏览: 128
Python 从attribute到property详解
这个错误通常出现在使用 Pandas 库的 DataFrame 中,使用了 `loc` 方法,但是应该使用的是 `iloc` 方法,因为 `loc` 方法是通过标签(label)来访问数据,而 `iloc` 方法是通过整数位置(integer position)来访问数据。所以,当你使用整数位置来访问 DataFrame 中的数据时,应该使用 `iloc` 方法。如果你确定要使用 `loc` 方法,那么需要确保你的 DataFrame 中的每个行和列都有标签。
阅读全文