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 @@ -5325,12 +5325,23 @@ def identical(self, other) -> bool:
5325
5325
"""
5326
5326
Similar to equals, but checks that object attributes and types are also equal.
5327
5327
5328
+ Parameters
5329
+ ----------
5330
+ other : Index
5331
+ The Index object you want to compare with the current Index object.
5332
+
5328
5333
Returns
5329
5334
-------
5330
5335
bool
5331
5336
If two Index objects have equal elements and same type True,
5332
5337
otherwise False.
5333
5338
5339
+ See Also
5340
+ --------
5341
+ Index.equals: Determine if two Index object are equal.
5342
+ Index.has_duplicates: Check if the Index has duplicate values.
5343
+ Index.is_unique: Return if the index has unique values.
5344
+
5334
5345
Examples
5335
5346
--------
5336
5347
>>> idx1 = pd.Index(["1", "2", "3"])
You can’t perform that action at this time.
0 commit comments