File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 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
265265 -i " pandas.api.extensions.ExtensionArray.view SA01" \
266266 -i " pandas.api.indexers.VariableOffsetWindowIndexer PR01,SA01" \
267267 -i " pandas.api.interchange.from_dataframe RT03,SA01" \
268- -i " pandas.api.types.is_any_real_numeric_dtype SA01" \
269268 -i " pandas.api.types.is_bool PR01,SA01" \
270269 -i " pandas.api.types.is_bool_dtype SA01" \
271270 -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:
11851185 boolean
11861186 Whether or not the array or dtype is of a real number dtype.
11871187
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+
11881194 Examples
11891195 --------
11901196 >>> from pandas.api.types import is_any_real_numeric_dtype
You can’t perform that action at this time.
0 commit comments