File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
317
317
-i " pandas.api.types.is_categorical_dtype SA01" \
318
318
-i " pandas.api.types.is_complex PR01,SA01" \
319
319
-i " pandas.api.types.is_complex_dtype SA01" \
320
- -i " pandas.api.types.is_datetime64_any_dtype SA01" \
321
320
-i " pandas.api.types.is_datetime64_dtype SA01" \
322
321
-i " pandas.api.types.is_datetime64_ns_dtype SA01" \
323
322
-i " pandas.api.types.is_datetime64tz_dtype SA01" \
Original file line number Diff line number Diff line change @@ -880,6 +880,15 @@ def is_datetime64_any_dtype(arr_or_dtype) -> bool:
880
880
bool
881
881
Whether or not the array or dtype is of the datetime64 dtype.
882
882
883
+ See Also
884
+ --------
885
+ api.types.is_datetime64_dtype : Check whether an array-like or dtype is of the
886
+ datetime64 dtype.
887
+ api.is_datetime64_ns_dtype : Check whether the provided array or dtype is of the
888
+ datetime64[ns] dtype.
889
+ api.is_datetime64tz_dtype : Check whether an array-like or dtype is of a
890
+ DatetimeTZDtype dtype.
891
+
883
892
Examples
884
893
--------
885
894
>>> from pandas.api.types import is_datetime64_any_dtype
You can’t perform that action at this time.
0 commit comments