Python Pandas Index.is_unique
Pandas Index是一个不可变的ndarray,实现了一个有序的、可切分的集合。它是存储所有pandas对象的轴标签的基本对象。
Pandas Index.is_unique属性,如果给定索引对象中的基础数据是唯一的,则返回True,否则返回False。
语法: Index.is_unique
参数:无
返回 : 布尔值
例子#1:使用Index.is_unique属性来找出给定Index对象中的底层数据是否是唯一的。
# 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属性来找出给定索引对象中的底层数据是否是唯一的。
# check if the values in the Index
# is unique or not.
result = idx.is_unique
# Print the result
print(result)
输出 :
正如我们在输出中看到的,Index.is_unique属性已经返回True,表明给定的Index对象的底层数据是唯一的。
例子#2 :使用Index.is_unique属性来找出给定的Index对象中的基础数据是否是唯一的。
# 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属性来找出给定索引对象中的底层数据是否是唯一的。
# check if the values in the Index
# is unique or not.
result = idx.is_unique
# Print the result
print(result)
输出 :
正如我们在输出中看到的,Index.is_unique属性返回了False,表明给定Index对象的底层数据不是唯一的。