pandas.Index.is_unique#
- Index.is_unique[源代码]#
如果索引具有唯一值,则返回。
- 返回:
- bool
参见
Index.has_duplicates
检查是否包含重复值的反向方法。
例子
>>> idx = pd.Index([1, 5, 7, 7]) >>> idx.is_unique False
>>> idx = pd.Index([1, 5, 7]) >>> idx.is_unique True
>>> idx = pd.Index(["Watermelon", "Orange", "Apple", "Watermelon"]).astype( ... "category" ... ) >>> idx.is_unique False
>>> idx = pd.Index(["Orange", "Apple", "Watermelon"]).astype("category") >>> idx.is_unique True