pd.drop_duplicates code example
Example 1: remove duplicate row in df
df = df.drop_duplicates()
Example 2: drop duplicate index pandas
df3 = df3[~df3.index.duplicated(keep='first')]
Example 3: df remove duplicate rows
df = df.drop_duplicates()
p
Example 4: Return a new DataFrame with duplicate rows removed
from pyspark.sql import Row
df = sc.parallelize([
Row(name='Alice', age=5, height=80),
Row(name='Alice', age=5, height=80),
Row(name='Alice', age=10, height=80)]).toDF()
df.dropDuplicates().show()
df.dropDuplicates(['name', 'height']).show()