File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3559,13 +3559,13 @@ def casefold(self):
3559
3559
5 True
3560
3560
dtype: bool
3561
3561
3562
- For a string to be considered numeric, all its characters must have a Unicode
3562
+ For a string to be considered numeric, all its characters must have a Unicode
3563
3563
numeric property. As a consequence, the following cases are **not** recognized
3564
3564
as numeric:
3565
3565
3566
- - **Decimal numbers** (e.g., "1.1"): due to period ``"."``
3567
- - **Negative numbers** (e.g., "-5"): due to minus sign ``"-"``
3568
- - **Scientific notation** (e.g., "1e3"): due to characters like ``"e"``
3566
+ - **Decimal numbers** (e.g., "1.1"): due to period ``"."``
3567
+ - **Negative numbers** (e.g., "-5"): due to minus sign ``"-"``
3568
+ - **Scientific notation** (e.g., "1e3"): due to characters like ``"e"``
3569
3569
3570
3570
>>> s2 = pd.Series(["1.1", "-5", "1e3"])
3571
3571
>>> s2.str.isnumeric()
You can’t perform that action at this time.
0 commit comments