Ben Epstein
Ben Epstein
@JovanVeljanoski your code has a difference in it, the difference that is breaking mine vs yours You have `values = df.sex.unique()` where I have `values = list(str(df.sex.unique()))` My line breaks...
Hey @JovanVeljanoski thanks for taking a look! This makes sense to me, and I definitely recognize that I'm abusing the values key. The point of the example was to showcase...
@khanfarhan10 I would think regex is your best bet. If you want something a bit more specific you could do a registered function ``` import vaex import pyarrow as pa...
Hi @maartenbreddels @xdssio are there plans to continue/merge these efforts? We use Vaex for a lot of processing now and plan to use it for images in the near future...
That's great! But @maartenbreddels it doesn't work if you try to listAgg that struct column. Maybe that's a new issue, not sure.
@JovanVeljanoski after speaking with @maartenbreddels it was my understanding is that `.values` is 0 mem copy. https://vaexio.slack.com/archives/C017EEHSQ84/p1646850161602389
@JovanVeljanoski thanks for the explanation, I didn't understand that. So is there a better approach here? Currently returning `True` always could lead to many side-effects for end users
@JovanVeljanoski how about now?
Hmm @maartenbreddels when i tested locally i did not get that behavior. Are there docs to build vaex from scratch locally?
@sk2 i ran into a similar issue and indeed the regular concat did not scale. I am using this internally and it has not caused any issues for me. I...