there’s no way to drop rows with duplicated index using `drop_duplicates`. we’d have to add a copy of the index as column, or do this: ``` python df[np.logical_not(df.index.duplicated(take_last=True).values)] ```