Skip to content

Commit

Permalink
Merge pull request #301 from abstractqqq/conditional_impute
Browse files Browse the repository at this point in the history
Conditional impute
  • Loading branch information
abstractqqq authored Dec 15, 2024
2 parents 8b0640b + 3fa8379 commit 8a10f2a
Show file tree
Hide file tree
Showing 15 changed files with 1,113 additions and 674 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars_ds"
version = "0.6.3"
version = "0.7.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Generally speaking, the more expressions you want to evaluate simultaneously, th

Why does speed matter?

If your code already executes under 1s, then maybe it doesn't. But as your data grow, having a 5s run vs. a 1s run will make a lot of difference in your iterations for your project. Speed of execution becomes a bigger issues if you are building reports on demand, or if you need to pay extra for additional compute.
If your code already executes under 1s and you only use your code in non-production, ad-hoc environments, then maybe it doesn't. Even so, as your data grow, having a 5s run vs. a 1s run will make a lot of difference in your iterations for your project. Speed of execution becomes a bigger issues if you are building reports on demand, or if you need to pay extra for additional compute or when you have a production pipeline that has to deliver the data under a time constraint.

## HELP WANTED!

Expand Down
Loading

0 comments on commit 8a10f2a

Please sign in to comment.