我有2个数据帧(test_label,预测),test_label数据帧具有-1值的行,我想删除test_label中所有具有-1值的行以及预测数据帧中test_label的所有对应索引
for index, row in test_label_df.iterrows():
if row[1] == -1:
test_label_df.drop(test_label_df.index[[index]], inplace = True)
submission.drop(submission.index[index], inplace = True)
print(index)
我希望test_label中具有-1值的行以及预测中的相应行将被删除。但是输出仍然具有-1值