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):
35593559 5 True
35603560 dtype: bool
35613561
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
35633563 numeric property. As a consequence, the following cases are **not** recognized
35643564 as numeric:
35653565
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"``
35693569
35703570 >>> s2 = pd.Series(["1.1", "-5", "1e3"])
35713571 >>> s2.str.isnumeric()
You can’t perform that action at this time.
0 commit comments