KeyError:Pandas中的“ [1 2]不在索引中”

时间:2019-10-16 21:09:11

标签: python python-3.x pandas nltk

我正在尝试标记评论(好坏),但Pandas崩溃并出现KeyError错误:“ [1 2]不在索引中”。 enter image description here

这是我的代码:

form = ProfileUpdateForm(request.POST or None, instance=user.profile)

帮助我修复错误并修复代码。

1 个答案:

答案 0 :(得分:1)

我想你想要的是

dataset = dataset.iloc[:,[1, 2]]

选择第二列和第三列?