How to Get Unique (Distinct) Values of a Column in Pandas (Python)

How to Get Unique (Distinct) Values of a Column in Pandas (Python)

Channel:
Subscribers:
53,100
Published on ● Video Link: https://www.youtube.com/watch?v=51yAgEDjaJI



Category:
Guide
Duration: 1:44
6,126 views
101


↓ Code Available Below! ↓

This video shows how to check the unique or distinct values in a column of a pandas data frame. This can be useful to get an idea of the number of variety of values in a given column. The video also shows a method for checking all the combinations of values in two or more columns.

If you find this video useful, like, share and subscribe to support the channel!
► Subscribe: https://www.youtube.com/c/DataDaft?sub_confirmation=1


Code used in this Python Code Clip:

import pandas as pd

import statsmodels.api as sm #(To access mtcars dataset)
mtcars = sm.datasets.get_rdataset("mtcars", "datasets", cache=True).data
mtcars.head()

# Get unique entries of a column with series.unique()
mtcars["cyl"].unique()

# Get unique entries across multiple columns

mtcars_subset = mtcars[["cyl", "gear"]]

mtcars_subset.drop_duplicates().reset_index(drop=True)


* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! I will use Unicode large < and > symbols in place of the standard sized ones. .


⭐ Kite is a free AI-powered coding assistant that integrates with popular editors and IDEs to give you smart code completions and docs while you’re typing. It is a cool application of machine learning that can also help you code faster! Check it out here: https://www.kite.com/get-kite/?utm_medium=referral&utm_source=youtube&utm_campaign=datadaft&utm_content=description-only







Tags:
pandas unique
pandas distinct
pandas .unique()
.unique()
unique()
pandas get unique entries
pandas find unique entries
pandas version of distinct
pandas pairwise unique
pandas combinations of two columns
data frame distinct values
data frame unique values
data frame all possible values
data frame all combinations of values between two columns
pandas basics
python
learn python
learn pandas
data frames
pandas data frames