File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
97
97
-i " pandas.Index.get_indexer_for PR01,SA01" \
98
98
-i " pandas.Index.get_indexer_non_unique PR07,SA01" \
99
99
-i " pandas.Index.get_loc PR07,RT03,SA01" \
100
- -i " pandas.Index.identical PR01,SA01" \
101
100
-i " pandas.Index.join PR07,RT03,SA01" \
102
101
-i " pandas.Index.names GL08" \
103
102
-i " pandas.Index.putmask PR01,RT03" \
Original file line number Diff line number Diff line change @@ -5344,12 +5344,23 @@ def identical(self, other) -> bool:
5344
5344
"""
5345
5345
Similar to equals, but checks that object attributes and types are also equal.
5346
5346
5347
+ Parameters
5348
+ ----------
5349
+ other : Index
5350
+ The Index object you want to compare with the current Index object.
5351
+
5347
5352
Returns
5348
5353
-------
5349
5354
bool
5350
5355
If two Index objects have equal elements and same type True,
5351
5356
otherwise False.
5352
5357
5358
+ See Also
5359
+ --------
5360
+ Index.equals: Determine if two Index object are equal.
5361
+ Index.has_duplicates: Check if the Index has duplicate values.
5362
+ Index.is_unique: Return if the index has unique values.
5363
+
5353
5364
Examples
5354
5365
--------
5355
5366
>>> idx1 = pd.Index(["1", "2", "3"])
You can’t perform that action at this time.
0 commit comments