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 @@ -314,7 +314,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
314
314
-i " pandas.api.types.is_sparse SA01" \
315
315
-i " pandas.api.types.is_string_dtype SA01" \
316
316
-i " pandas.api.types.is_timedelta64_ns_dtype SA01" \
317
- -i " pandas.api.types.is_unsigned_integer_dtype SA01" \
318
317
-i " pandas.api.types.pandas_dtype PR07,RT03,SA01" \
319
318
-i " pandas.api.types.union_categoricals RT03,SA01" \
320
319
-i " pandas.arrays.ArrowExtensionArray PR07,SA01" \
Original file line number Diff line number Diff line change @@ -771,6 +771,15 @@ def is_unsigned_integer_dtype(arr_or_dtype) -> bool:
771
771
boolean
772
772
Whether or not the array or dtype is of an unsigned integer dtype.
773
773
774
+ See Also
775
+ --------
776
+ api.types.is_signed_integer_dtype : Check whether the provided array
777
+ or dtype is of an signed integer dtype.
778
+ api.types.is_integer_dtype : Check whether the provided array or dtype
779
+ is of an integer dtype.
780
+ api.types.is_numeric_dtype : Check whether the provided array or dtype
781
+ is of a numeric dtype.
782
+
774
783
Examples
775
784
--------
776
785
>>> from pandas.api.types import is_unsigned_integer_dtype
You can’t perform that action at this time.
0 commit comments