Replies: 1 comment
-
Hey! So the way vaex works, due to its expression system, these expressions will be in fact evaluated simultaneously, depending on what is needed. If you use all of them at once, they will be evaluated concurrently. If you use only some of then, than only those will be evaluated. Remember, we are working with expressions, the underlying data is immutable. The only thing I can think of, is that if you do this a lot, you may define your own extension function to save you a bit of typing. You can the examples in the tutorial. Also, it is not a very good idea to do "cross-dataframe" expression definition, since for the time being, this is not possible (exception being joins). So this like
I hope this helps a bit. |
Beta Was this translation helpful? Give feedback.
-
pandas
hasdt.components
that returns adf
.I'm sure the following can be done concurrently to finish the whole op faster.
Can this be done in a more elegant manner, with a list comprehension or something?
Beta Was this translation helpful? Give feedback.
All reactions