Jiting Xu
Jiting Xu
Hi @lostmygithubaccount , how do you want to format the table attachment?
HI @jcrist I could take this one. Will do it one by one. Plan to add `read_parquet` and `read_csv`. How about `read_json` and `read_delta`?
the quartodoc error is an upstream issue: https://github.com/machow/quartodoc/issues/357
Thanks for raising the issue. Personally, I prefer to the option 1: insert the orderings into the individual aggs for the following reasons: - it represents the users intent (wants...
Have similar feeling, Not sure if it is good to remove this `order_by()` method and `orderings` attribute from the `GroupedTable` because: - It is confusing where the ordering should be...
could we do this ``` t.group_by("c").mutate(bs=_.b.collect(order_by=_.a)) ``` ---- ``` e2 = orders.group_by("cust").mutate(earliest_first=_.amount.collect(order_by=_.date)) ``` loh, it is no ``` SELECT "t0"."cust", "t0"."date", "t0"."amount", ARRAY_AGG("t0"."amount") FILTER(WHERE "t0"."amount" IS NOT NULL) OVER (PARTITION...
It is possible to measure different parameters in one step without cv support, you need to overwrite the steps object. Something like this. ```python for components in components_list: recipe =...
> The more that I think of it. The more that I wonder if one should perhaps be careful. After all, do we really want to use parallel grid search...
Hi @koaning Thanks for your input. The reasons we deprioritized it for our initial work is that, I copied my reply in https://github.com/ibis-project/ibis-ml/issues/135#issuecomment-2308956315: - We still could do the model...
It makes sense to support this, but I wanted to highlight a few potential scenarios to consider. Did some investigation this morning: - To enable this, we need to implement...