You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this really need to be deprecated? Isn't it just a wrapper to idx[idx.duplicated()].unique(), and should therefore be extremely low-maintenance? Very inconvenient to call
idx=df.indexidx[idx.duplicated()].unique()
rather than
df.index.get_duplicates()
when your trying to see where duplicates are coming from debugging your code interactively.
completely duplicates (pun-intended) .duplicated / .drop_duplicates and is unecessary.
The text was updated successfully, but these errors were encountered: