File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -589,13 +589,10 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
589
589
pandas.Timestamp.fromtimestamp \
590
590
pandas.api.types.infer_dtype \
591
591
pandas.api.types.is_datetime64_any_dtype \
592
- pandas.api.types.is_datetime64_dtype \
593
592
pandas.api.types.is_datetime64_ns_dtype \
594
593
pandas.api.types.is_datetime64tz_dtype \
595
594
pandas.api.types.is_integer_dtype \
596
595
pandas.api.types.is_interval_dtype \
597
- pandas.api.types.is_numeric_dtype \
598
- pandas.api.types.is_object_dtype \
599
596
pandas.api.types.is_period_dtype \
600
597
pandas.api.types.is_signed_integer_dtype \
601
598
pandas.api.types.is_sparse \
Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ def is_object_dtype(arr_or_dtype) -> bool:
170
170
171
171
Examples
172
172
--------
173
+ >>> from pandas.api.types import is_object_dtype
173
174
>>> is_object_dtype(object)
174
175
True
175
176
>>> is_object_dtype(int)
@@ -286,6 +287,7 @@ def is_datetime64_dtype(arr_or_dtype) -> bool:
286
287
287
288
Examples
288
289
--------
290
+ >>> from pandas.api.types import is_datetime64_dtype
289
291
>>> is_datetime64_dtype(object)
290
292
False
291
293
>>> is_datetime64_dtype(np.datetime64)
@@ -1136,6 +1138,7 @@ def is_numeric_dtype(arr_or_dtype) -> bool:
1136
1138
1137
1139
Examples
1138
1140
--------
1141
+ >>> from pandas.api.types import is_numeric_dtype
1139
1142
>>> is_numeric_dtype(str)
1140
1143
False
1141
1144
>>> is_numeric_dtype(int)
You can’t perform that action at this time.
0 commit comments