w3resource

Pandas Practice Set-1: Count the duplicate rows of diamonds DataFrame

Pandas Practice Set-1: Exercise-65 with Solution

Write a Pandas program to count the duplicate rows of diamonds DataFrame.

Sample Solution:

Python Code:

import pandas as pd
diamonds = pd.read_csv('https://raw.githubusercontent.com/mwaskom/seaborn-data/master/diamonds.csv')
print("Original Dataframe:")
print(diamonds.shape)
print("\nDuplicate rows of diamonds DataFrame:")
print(diamonds.duplicated().sum())

Sample Output:

Original Dataframe:
(53940, 10)

Duplicate rows of diamonds DataFrame:
146

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Pandas program to read the diamonds DataFrame and detect duplicate color.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.