File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
313
313
-i " pandas.api.types.is_sparse SA01" \
314
314
-i " pandas.api.types.is_string_dtype SA01" \
315
315
-i " pandas.api.types.is_timedelta64_ns_dtype SA01" \
316
- -i " pandas.api.types.is_unsigned_integer_dtype SA01" \
317
316
-i " pandas.api.types.pandas_dtype PR07,RT03,SA01" \
318
317
-i " pandas.api.types.union_categoricals RT03,SA01" \
319
318
-i " pandas.arrays.ArrowExtensionArray PR07,SA01" \
Original file line number Diff line number Diff line change @@ -780,6 +780,15 @@ def is_unsigned_integer_dtype(arr_or_dtype) -> bool:
780
780
boolean
781
781
Whether or not the array or dtype is of an unsigned integer dtype.
782
782
783
+ See Also
784
+ --------
785
+ api.types.is_signed_integer_dtype : Check whether the provided array
786
+ or dtype is of an signed integer dtype.
787
+ api.types.is_integer_dtype : Check whether the provided array or dtype
788
+ is of an integer dtype.
789
+ api.types.is_numeric_dtype : Check whether the provided array or dtype
790
+ is of a numeric dtype.
791
+
783
792
Examples
784
793
--------
785
794
>>> from pandas.api.types import is_unsigned_integer_dtype
You can’t perform that action at this time.
0 commit comments