File tree 2 files changed +10
-1
lines changed
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
117
117
-i " pandas.api.types.is_float PR01,SA01" \
118
118
-i " pandas.api.types.is_float_dtype SA01" \
119
119
-i " pandas.api.types.is_hashable PR01,RT03,SA01" \
120
- -i " pandas.api.types.is_int64_dtype SA01" \
121
120
-i " pandas.api.types.is_integer PR01,SA01" \
122
121
-i " pandas.api.types.is_interval_dtype SA01" \
123
122
-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:
886
886
boolean
887
887
Whether or not the array or dtype is of the int64 dtype.
888
888
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
+
889
899
Notes
890
900
-----
891
901
Depending on system architecture, the return value of `is_int64_dtype(
You can’t perform that action at this time.
0 commit comments