-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enh: str.split
#1932
Labels
enhancement
New feature or request
Comments
skritsotalakis
pushed a commit
to skritsotalakis/narwhals
that referenced
this issue
Feb 18, 2025
* pandas_like * dask * duckdb * arrow (Series implementation does not account for inclusive = True) * added split_test * added api-reference
skritsotalakis
pushed a commit
to skritsotalakis/narwhals
that referenced
this issue
Feb 18, 2025
skritsotalakis
pushed a commit
to skritsotalakis/narwhals
that referenced
this issue
Feb 20, 2025
* implemented without inclusive option (https://docs.pola.rs/api/python/dev/reference/expressions/api/polars.Expr.str.split.html) * support for _arrow, _dask, _duckdb, spark_like * support for pandas_like(pyarrow backed)
skritsotalakis
pushed a commit
to skritsotalakis/narwhals
that referenced
this issue
Feb 21, 2025
* implemented without inclusive option (https://docs.pola.rs/api/python/dev/reference/expressions/api/polars.Expr.str.split.html) * support for _arrow, _dask, _duckdb, spark_like * support for pandas_like(pyarrow backed)
skritsotalakis
pushed a commit
to skritsotalakis/narwhals
that referenced
this issue
Feb 22, 2025
* implemented without inclusive option (https://docs.pola.rs/api/python/dev/reference/expressions/api/polars.Expr.str.split.html) * support for _arrow, _dask, _duckdb, spark_like * support for pandas_like(pyarrow backed)
skritsotalakis
pushed a commit
to skritsotalakis/narwhals
that referenced
this issue
Feb 23, 2025
* implemented without inclusive option (https://docs.pola.rs/api/python/dev/reference/expressions/api/polars.Expr.str.split.html) * support for _arrow, _dask, _duckdb, spark_like * support for pandas_like(pyarrow backed)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was looking through Modern Polars and they use this in chapter 2 https://kevinheavey.github.io/modern-polars/
We should be able to support this for all backends, but given that we return a list dtype, for pandas this should only be supported if pyarrow is installed
The text was updated successfully, but these errors were encountered: