Skip to content

Commit 8a10f2a

Browse files
authored
Merge pull request #301 from abstractqqq/conditional_impute
Conditional impute
2 parents 8b0640b + 3fa8379 commit 8a10f2a

15 files changed

+1113
-674
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polars_ds"
3-
version = "0.6.3"
3+
version = "0.7.0"
44
edition = "2021"
55

66
[lib]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Generally speaking, the more expressions you want to evaluate simultaneously, th
216216

217217
Why does speed matter?
218218

219-
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.
219+
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.
220220

221221
## HELP WANTED!
222222

0 commit comments

Comments
 (0)