We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3069318 commit 8e119edCopy full SHA for 8e119ed
introduction-pandas/2882-drop-duplicate-rows.py
@@ -49,4 +49,4 @@
49
import pandas as pd
50
51
def dropDuplicateEmails(customers: pd.DataFrame) -> pd.DataFrame:
52
- return customers.drop_duplicates("email")
+ return customers.drop_duplicates(subset = "email")
0 commit comments