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?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/pandas/practice-set1/pandas-practice-set1-exercise-65.php