File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
123
123
-i " pandas.Timestamp.tzinfo GL08" \
124
124
-i " pandas.Timestamp.year GL08" \
125
125
-i " pandas.api.extensions.ExtensionArray.interpolate PR01,SA01" \
126
- -i " pandas.api.types.is_complex_dtype SA01" \
127
126
-i " pandas.api.types.is_datetime64_dtype SA01" \
128
127
-i " pandas.api.types.is_datetime64_ns_dtype SA01" \
129
128
-i " pandas.api.types.is_datetime64tz_dtype SA01" \
Original file line number Diff line number Diff line change @@ -1442,6 +1442,14 @@ def is_complex_dtype(arr_or_dtype) -> bool:
1442
1442
boolean
1443
1443
Whether or not the array or dtype is of a complex dtype.
1444
1444
1445
+ See Also
1446
+ --------
1447
+ api.types.is_complex: Return True if given object is complex.
1448
+ api.types.is_numeric_dtype: Check whether the provided array or
1449
+ dtype is of a numeric dtype.
1450
+ api.types.is_integer_dtype: Check whether the provided array or
1451
+ dtype is of an integer dtype.
1452
+
1445
1453
Examples
1446
1454
--------
1447
1455
>>> from pandas.api.types import is_complex_dtype
You can’t perform that action at this time.
0 commit comments