我在使用DataFrame
之后收到pivot_table
,其中包含一些重复的索引,如下所示:
如果你查看底部条目中的第二个条目,它只有1 memberid
代表2 testscoreid
。 DataFrame
中有一个名为ScoreRatio
的相应列,我在此处未显示。我只想让testscoreid
保持较高的ScoreRatio
值。
可能会找到数据here。
我尝试使用以下代码,但似乎没有任何影响:
selectedTestsPivotCorrect.reset_index(level=['memberid'])
selectedTestsPivotCorrect.groupby(selectedTestsPivotCorrect.index).last()
如何对memberid
中出现的所有重复(或可能的三元组,四元组等)DataFrame
执行此操作?
任何指针都会受到高度赞赏。