Replies: 1 comment
-
I think the only thing we currently support is joining back, note that you can operate on a list of string as if it is a flattened column of strings. so you can do e.g. split -> strip -> join |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
This question is for my own information, i.e. it is a 'general' question.
I was recently answered in #1906 by Jovan that following approach to process results from
str.split
in vaex is not efficient (use ofapply
).(just for being complete, this methodology comes from this SO answer)
Meanwhile, I also stumbled on this Medium article, showcasing speed of vaex for operations on string, including
split
.So, the underlying thought I have is that, if vaex shows amazing speed for
split
, surely, the way of efficiently processing results fromsplit
has also been thought about.Hence my question, what kind of processings ('efficient' ones) can be done after a
split
?split
produces an expression which items are lists.My need would be a way to select an item in these lists.
This might not be the 'usual' processing done after a
split
. If this is the case indeed, please, what processing after asplit
can be managed efficiently?Thanks in advance for your feedbacks!
Bests
Beta Was this translation helpful? Give feedback.
All reactions