-
Notifications
You must be signed in to change notification settings - Fork 127
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
Implements Series.split_into/3 #873
Implements Series.split_into/3 #873
Conversation
This is looking great so far @ryancurtin! The last step is to implement the feature for the lazy backend as well and add a test. The lazy backend is the one used inside DF.mutate and friends. You can see other PRs, such as this one, for examples: #859 |
@josevalim - Ok, I've re-requested review since I've now implemented the lazy backend and added some tests using a DataFrame. Thank you again for your help! |
Three remaining comments and we will ship it :D |
… longer use ChunkedArray
Thanks again @josevalim and @lkarthee - I've made the suggested changes! |
💚 💙 💜 💛 ❤️ |
Implements the
Series.split_into/3
function, which closes #871. String columns can be split into a struct with multiple fields.