Gil Martins
Gil Martins
If I'm not wrong, the Operator Precedence, in the logical branch is wrong. **In the branch the precedence is this:** [1] > | < | >= | | < |...
I think that I have an idea on what is going on. given the expression: `e = ((pl.col('b')/2.0)
I tried to read the rust code, however I'm a zero at it sorry. And I hope that my following message can contribute something. I'm not sure that it can...
I think that I'm not following you, sorry. I'm probably missing some basic thing about how it's implemented... **_Column 'foo'_** **row group 1:** min = -10 max = 10 **row...
I agree, only reported it because it "almost worked" for lazy df. And works for non lazy ones. to be true when I first tried it I was looking for...
One could argue that average and mean are not the same thing... I guess it depends on what type of mean you are speaking about. That would be an cool...
this is why for example sql server or postgresl use AVG this is from postgresql documentation AVG() -> the average **(arithmetic mean)** of all input values https://www.postgresql.org/docs/8.2/functions-aggregate.html In a way...