File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
117117 -i " pandas.api.types.is_float PR01,SA01" \
118118 -i " pandas.api.types.is_float_dtype SA01" \
119119 -i " pandas.api.types.is_hashable PR01,RT03,SA01" \
120- -i " pandas.api.types.is_int64_dtype SA01" \
121120 -i " pandas.api.types.is_integer PR01,SA01" \
122121 -i " pandas.api.types.is_interval_dtype SA01" \
123122 -i " pandas.api.types.is_iterator PR07,SA01" \
Original file line number Diff line number Diff line change @@ -886,6 +886,16 @@ def is_int64_dtype(arr_or_dtype) -> bool:
886886 boolean
887887 Whether or not the array or dtype is of the int64 dtype.
888888
889+ See Also
890+ --------
891+ api.types.is_float_dtype : Check whether the provided array or dtype is of a
892+ float dtype.
893+ api.types.is_bool_dtype : Check whether the provided array or dtype is of a
894+ boolean dtype.
895+ api.types.is_object_dtype : Check whether an array-like or dtype is of the
896+ object dtype.
897+ numpy.int64 : Numpy's 64-bit integer type.
898+
889899 Notes
890900 -----
891901 Depending on system architecture, the return value of `is_int64_dtype(
You can’t perform that action at this time.
0 commit comments