Skip to content

Commit 3b447d6

Browse files
DOC: Add 'See Also' for pandas.api.types.is_any_real_numeric_dtype (pandas-dev#59404)
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 976c1ad commit 3b447d6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff 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" \

pandas/core/dtypes/common.py

+6
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)