reswqa

Results 95 comments of reswqa

> hi everyone! > > I'm curious as to if there has been any headway into getting this issue resolved? @jianyun8023 do you have a publicly available branch? Very glad...

Seems that we don't have the `Makefile` in the unpacked top-level folder, but we do have it in the `py-polars` folder. It can't work if parent `Makefile` didn't exist.

I didn't aware of how to test it, so `codecov` failed.

IIUC, this should be duplicated with #15936. Kindly ping @alexander-beedie for some insight.

Before we rename `pl.count` to `pl.len`: `pl.count()` means the length of df, including the null value. But `pl.count("a")` equals to `pl.col("a").count()`, this doesn't include null value. This is sort of...

The key point is that the schema of `FunctionExpr` in `agg` seems doesn't has a `list` type(in schema). ```python pl.LazyFrame({"a": [1,None], "b": [1,2]}) .group_by("b").agg(pl.col("a").drop_nulls()) .schema ``` ```python OrderedDict([('b', Int64), ('a',...

> I think function expr should call the to_field with Context::Aggregation. You mean when function get its input field? If we had `agg(pl.col("a").foo())`, the input to `foo()` would be a...