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.extensions.ExtensionArray.view SA01" \
318
318
-i " pandas.api.indexers.VariableOffsetWindowIndexer PR01,SA01" \
319
319
-i " pandas.api.interchange.from_dataframe RT03,SA01" \
320
- -i " pandas.api.types.infer_dtype PR07,SA01" \
321
320
-i " pandas.api.types.is_any_real_numeric_dtype SA01" \
322
321
-i " pandas.api.types.is_bool PR01,SA01" \
323
322
-i " pandas.api.types.is_bool_dtype SA01" \
Original file line number Diff line number Diff line change @@ -1449,6 +1449,7 @@ def infer_dtype(value: object, skipna: bool = True) -> str:
1449
1449
Parameters
1450
1450
----------
1451
1451
value : scalar , list , ndarray , or pandas type
1452
+ The input data to infer the dtype.
1452
1453
skipna : bool , default True
1453
1454
Ignore NaN values when inferring the type.
1454
1455
@@ -1483,6 +1484,14 @@ def infer_dtype(value: object, skipna: bool = True) -> str:
1483
1484
TypeError
1484
1485
If ndarray-like but cannot infer the dtype
1485
1486
1487
+ See Also
1488
+ --------
1489
+ api.types.is_scalar : Check if the input is a scalar.
1490
+ api.types.is_list_like : Check if the input is list-like.
1491
+ api.types.is_integer : Check if the input is an integer.
1492
+ api.types.is_float : Check if the input is a float.
1493
+ api.types.is_bool : Check if the input is a boolean.
1494
+
1486
1495
Notes
1487
1496
-----
1488
1497
- 'mixed' is the catchall for anything that is not otherwise
You can’t perform that action at this time.
0 commit comments