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 @@ -119,7 +119,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
119
119
-i " pandas.api.types.is_hashable PR01,RT03,SA01" \
120
120
-i " pandas.api.types.is_int64_dtype SA01" \
121
121
-i " pandas.api.types.is_integer PR01,SA01" \
122
- -i " pandas.api.types.is_interval_dtype SA01" \
123
122
-i " pandas.api.types.is_iterator PR07,SA01" \
124
123
-i " pandas.api.types.is_list_like SA01" \
125
124
-i " pandas.api.types.is_named_tuple PR07,SA01" \
Original file line number Diff line number Diff line change @@ -479,6 +479,15 @@ def is_interval_dtype(arr_or_dtype) -> bool:
479
479
boolean
480
480
Whether or not the array-like or dtype is of the Interval dtype.
481
481
482
+ See Also
483
+ --------
484
+ api.types.is_object_dtype : Check whether an array-like or dtype is of the
485
+ object dtype.
486
+ api.types.is_numeric_dtype : Check whether the provided array or dtype is
487
+ of a numeric dtype.
488
+ api.types.is_categorical_dtype : Check whether an array-like or dtype is of
489
+ the Categorical dtype.
490
+
482
491
Examples
483
492
--------
484
493
>>> from pandas.core.dtypes.common import is_interval_dtype
You can’t perform that action at this time.
0 commit comments