KeyError: "None of [Index(['sum_gamerounds'], dtype='object')] are in the [columns]"
时间: 2023-10-26 14:05:13 浏览: 173
This error occurs when you are trying to access a column in a pandas dataframe that does not exist. The error message indicates that the column 'sum_gamerounds' does not exist in the dataframe.
To resolve this error, you can check the spelling of the column name and make sure it matches exactly with the column names in the dataframe. You can also check if the column has been renamed or dropped at some point in the code.
If the column name is correct and you still cannot access the column, you can try resetting the index of the dataframe using the reset_index() method. This will ensure that the column names are consistent with the dataframe indices.
相关问题
keyerror: "none of [index(dtype='object', length=101)] are in the [index]"
这个错误一般是因为你在使用 Pandas 这个库时,尝试使用了一个不存在于 DataFrame 中的列名或行名。可能是因为你在使用 DataFrame.loc 或 DataFrame.iloc 时指定了错误的索引值。你需要检查你的代码,并确保你使用的所有列名和行名都存在于你的 DataFrame 中。如果你需要进一步帮助,请提供更多的代码和上下文信息。
KeyError: Index([ 姓名 ], dtype= object )表里有姓名啊
这个错误通常意味着你尝试访问表格中不存在的列。你需要检查你的代码,并确保你正在使用正确的列名。
如果你确定表格中有一个名字为“姓名”的列,那么可能是因为该列名前后存在空格或其他不可见字符的原因。在访问列名时,确保将列名中的空格和其他不可见字符也包含在内,或者尝试从列名中去除这些字符。
阅读全文