keyerror: "none of [index(dtype='object', length=101)] are in the [index]"
时间: 2024-03-11 21:44:29 浏览: 225
python sort、sort_index方法代码实例
这个错误一般是因为你在使用 Pandas 这个库时,尝试使用了一个不存在于 DataFrame 中的列名或行名。可能是因为你在使用 DataFrame.loc 或 DataFrame.iloc 时指定了错误的索引值。你需要检查你的代码,并确保你使用的所有列名和行名都存在于你的 DataFrame 中。如果你需要进一步帮助,请提供更多的代码和上下文信息。
阅读全文