File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
175
175
-i " pandas.Timestamp.tzinfo GL08" \
176
176
-i " pandas.Timestamp.value GL08" \
177
177
-i " pandas.Timestamp.year GL08" \
178
- -i " pandas.api.extensions.ExtensionArray.duplicated RT03,SA01" \
179
178
-i " pandas.api.extensions.ExtensionArray.fillna SA01" \
180
179
-i " pandas.api.extensions.ExtensionArray.insert PR07,RT03,SA01" \
181
180
-i " pandas.api.extensions.ExtensionArray.interpolate PR01,SA01" \
Original file line number Diff line number Diff line change @@ -1220,6 +1220,15 @@ def duplicated(
1220
1220
Returns
1221
1221
-------
1222
1222
ndarray[bool]
1223
+ With true in indices where elements are duplicated and false otherwise.
1224
+
1225
+ See Also
1226
+ --------
1227
+ DataFrame.duplicated : Return boolean Series denoting
1228
+ duplicate rows.
1229
+ Series.duplicated : Indicate duplicate Series values.
1230
+ api.extensions.ExtensionArray.unique : Compute the ExtensionArray
1231
+ of unique values.
1223
1232
1224
1233
Examples
1225
1234
--------
You can’t perform that action at this time.
0 commit comments