Python | Pandas Index.is_unique
Last Updated :
20 Feb, 2019
Improve
Pandas Index is an immutable ndarray implementing an ordered, sliceable set. It is the basic object which stores the axis labels for all pandas objects.
Pandas
Python3
Output :
Now we will use
Python3 1==
Output :
As we can see in the output, the
Python3
Output :
Now we will use
Python3 1==
Output :
As we can see in the output, the
Index.is_unique
attribute return True
if the underlying data in the given Index object is unique else it return False
.
Syntax: Index.is_unique Parameter : None Returns : booleanExample #1: Use
Index.is_unique
attribute to find out if the underlying data in the given Index object is unique or not.
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Melbourne', 'Sanghai', 'Lisbon', 'Doha', 'Moscow'])
# Print the index
print(idx)

Index.is_unique
attribute to find out if the underlying data in the given Index object is unique or not.
# check if the values in the Index
# is unique or not.
result = idx.is_unique
# Print the result
print(result)

Index.is_unique
attribute has returned True
indicating that the underlying data of the given Index object is unique.
Example #2 : Use Index.is_unique
attribute to find out if the underlying data in the given Index object is unique or not.
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([900, 700, 620, 388, 900])
# Print the index
print(idx)

Index.is_unique
attribute to find out if the underlying data in the given Index object is unique or not.
# check if the values in the Index
# is unique or not.
result = idx.is_unique
# Print the result
print(result)

Index.is_unique
attribute has returned False
indicating that the underlying data of the given Index object is not unique.