File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
302
302
-i " pandas.api.types.is_float PR01,SA01" \
303
303
-i " pandas.api.types.is_float_dtype SA01" \
304
304
-i " pandas.api.types.is_hashable PR01,RT03,SA01" \
305
- -i " pandas.api.types.is_int64_dtype SA01" \
306
305
-i " pandas.api.types.is_integer PR01,SA01" \
307
306
-i " pandas.api.types.is_integer_dtype SA01" \
308
307
-i " pandas.api.types.is_interval_dtype SA01" \
Original file line number Diff line number Diff line change @@ -829,6 +829,13 @@ def is_int64_dtype(arr_or_dtype) -> bool:
829
829
int)` will be True if the OS uses 64-bit integers and False if the OS
830
830
uses 32-bit integers.
831
831
832
+ See Also
833
+ --------
834
+ pandas.api.types.is_string_dtype : Check whether the provided array or dtype is of the string dtype.
835
+ pandas.api.types.is_float_dtype : Check whether the provided array or dtype is of a float dtype.
836
+ pandas.api.types.is_integer_dtype : Check whether the provided array or dtype is of an integer dtype.
837
+ pandas.api.types.is_numeric_dtype : Check whether the provided array or dtype is of a numeric dtype.
838
+
832
839
Examples
833
840
--------
834
841
>>> from pandas.api.types import is_int64_dtype
You can’t perform that action at this time.
0 commit comments