File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
265
265
-i " pandas.api.extensions.ExtensionArray.view SA01" \
266
266
-i " pandas.api.indexers.VariableOffsetWindowIndexer PR01,SA01" \
267
267
-i " pandas.api.interchange.from_dataframe RT03,SA01" \
268
- -i " pandas.api.types.is_any_real_numeric_dtype SA01" \
269
268
-i " pandas.api.types.is_bool PR01,SA01" \
270
269
-i " pandas.api.types.is_bool_dtype SA01" \
271
270
-i " pandas.api.types.is_categorical_dtype SA01" \
Original file line number Diff line number Diff line change @@ -1185,6 +1185,12 @@ def is_any_real_numeric_dtype(arr_or_dtype) -> bool:
1185
1185
boolean
1186
1186
Whether or not the array or dtype is of a real number dtype.
1187
1187
1188
+ See Also
1189
+ --------
1190
+ is_numeric_dtype : Check if a dtype is numeric.
1191
+ is_complex_dtype : Check if a dtype is complex.
1192
+ is_bool_dtype : Check if a dtype is boolean.
1193
+
1188
1194
Examples
1189
1195
--------
1190
1196
>>> from pandas.api.types import is_any_real_numeric_dtype
You can’t perform that action at this time.
0 commit comments