Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages, and makes importing and analyzing data much easier.
While analyzing the data, many times the user wants to see the unique values in a particular column, which can be done using Pandas unique()
function.
To download the CSV file used, Click Here.
Syntax: Series.unique()
Return Type: Numpy array of unique values in that column
Example #1: Using Series.unique()
In this example, unique() method is used to know all type of unique values in Team column.
import pandas as pd
data = pd.read_csv( "employees.csv" )
arr = data[ "Team" ].unique()
print (arr)
|
Output:
As shown in the output image, an array with all of the unique values in the column is returned.

Error and Exceptions:
- This method works only on series and not on Data Frames
- As shown in the output, this method includes NULL value as a unique value.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Sep, 2018
Like Article
Save Article