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 @@ -313,7 +313,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
313313 -i " pandas.api.types.is_sparse SA01" \
314314 -i " pandas.api.types.is_string_dtype SA01" \
315315 -i " pandas.api.types.is_timedelta64_ns_dtype SA01" \
316- -i " pandas.api.types.is_unsigned_integer_dtype SA01" \
317316 -i " pandas.api.types.pandas_dtype PR07,RT03,SA01" \
318317 -i " pandas.api.types.union_categoricals RT03,SA01" \
319318 -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:
780780 boolean
781781 Whether or not the array or dtype is of an unsigned integer dtype.
782782
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+
783792 Examples
784793 --------
785794 >>> from pandas.api.types import is_unsigned_integer_dtype
You can’t perform that action at this time.
0 commit comments