A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/python-pandas-series-unique/ below:

Python | Pandas Series.unique() - GeeksforGeeks

Python | Pandas Series.unique()

Last Updated : 17 Sep, 2018

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.

Python 1==
# importing pandas package
import pandas as pd

# making data frame from csv file
data = pd.read_csv("employees.csv")

# storing unique value in a variable
arr = data["Team"].unique()

# printing array
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:

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4