Closed
Description
Feature Type
-
Adding new functionality to pandas
-
Changing existing functionality in pandas
-
Removing existing functionality in pandas
Problem Description
I'm using df.str.split(....) in pandas currently.
Tries to convert my df to pyarrow dtype, but this functionality is missing.
I get this error:
NotImplementedError: str.split not supported with pd.ArrowDtype(pa.string()).
Feature Description
Add the str.split function to pyarrow dtype.
Alternative Solutions
The alternative solution would be to use .apply which is not what I want to do, or stick to the classic numpy dtype.
Additional Context
No response