Commits
Click on a commit to change the comparison rangeClean up code
- move all test mods into their own separate files
- if `blah.rs` had a submodule `tests`, then `blah/mod.rs` would contain the original code and `blah/tests.rs` would contain the tests
- removed all enum imports
- ran `cargo clippy --fix ...`11 months ago
by raunakab Add all structure for stddev11 months ago
by raunakab Implement structure for local and distributed stddev11 months ago
by raunakab Implement non-grouped stddev
- factored out some common logic into a util::stats module
- refactored mean to use the new module11 months ago
by raunakab Implement grouped standard deviation
- some additional refactors to `utils::stats` module11 months ago
by raunakab Merge branch 'main' into feat/stddev11 months ago
by raunakab Merge branch 'main' into feat/stddev11 months ago
by raunakab Edit data-type of `square_sum` field in `to_field` impl11 months ago
by raunakab Fix errors in multi-partition aggregation planning11 months ago
by raunakab Add some tests for stddev (single- and multi- partitioned)11 months ago
by raunakab Finish tests for stddev feature11 months ago
by raunakab Explicitly import typing module; fix lints11 months ago
by raunakab Remove `SquareSum` since it can just be implemented as `AggExpr::Sum(Expr::Agg(AggExpr::BinaryOp { .. }))`11 months ago
by raunakab Update grouped-mean impl to use stats11 months ago
by raunakab Merge branch 'main' into feat/stddev11 months ago
by raunakab Add to docs11 months ago
by raunakab