gpt4 book ai didi

python - 在 Pandas 中使用 set_index 时出现异常

转载 作者:行者123 更新时间:2023-12-01 09:29:54 26 4
gpt4 key购买 nike

我正在 Pandas 中尝试 set_index() 方法,但出现一个无法解释的异常:

df

movieId title genres
1 2 Jumanji (1995) Adventure|Children|Fantasy
5 6 Heat (1995) Action|Crime|Thriller
10 11 American President, The (1995) Comedy|Drama|Romance

df.set_index(['a' , 'b' , 'c'], inplace = True)
df

KeyError: 'a'

最佳答案

如果想通过嵌套list(双[])设置索引,其长度与df相同:

df.set_index([['a' , 'b' , 'c']], inplace = True)
print (df)
movieId title genres
a 2 Jumanji (1995) Adventure|Children|Fantasy
b 6 Heat (1995) Action|Crime|Thriller
c 11 American President The (1995) Comedy|Drama|Romance

如果使用 list ([]) pandas 尝试将列 a,b,c 设置为 MultiIndex 并因为不存在会引发错误。

所以如果想按列设置索引:

df.set_index(['movieId' , 'title'], inplace = True)
print (df)
genres
movieId title
2 Jumanji (1995) Adventure|Children|Fantasy
6 Heat (1995) Action|Crime|Thriller
11 American President The (1995) Comedy|Drama|Romance

关于python - 在 Pandas 中使用 set_index 时出现异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50056903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com