delete duplicates pandas code example
Example 1: python remove duplicates
if mylist:
mylist.sort()
last = mylist[-1]
for i in range(len(mylist)-2, -1, -1):
if last == mylist[i]:
del mylist[i]
else:
last = mylist[i]
mylist = list(set(mylist))
Example 2: df remove duplicate rows
df = df.drop_duplicates()
p
Example 3: python remove duplicates
word = input().split()
for i in word:
if word.count(i) > 1:
word.remove(i)
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()