polars-df 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Cargo.lock +588 -456
- data/README.md +37 -2
- data/ext/polars/Cargo.toml +7 -7
- data/ext/polars/src/conversion/mod.rs +31 -21
- data/ext/polars/src/dataframe/general.rs +1 -48
- data/ext/polars/src/dataframe/io.rs +13 -9
- data/ext/polars/src/expr/general.rs +3 -0
- data/ext/polars/src/expr/meta.rs +6 -2
- data/ext/polars/src/file.rs +21 -3
- data/ext/polars/src/functions/aggregation.rs +4 -4
- data/ext/polars/src/functions/io.rs +34 -13
- data/ext/polars/src/functions/lazy.rs +5 -4
- data/ext/polars/src/functions/meta.rs +1 -1
- data/ext/polars/src/interop/arrow/to_ruby.rs +2 -2
- data/ext/polars/src/lazyframe/general.rs +48 -5
- data/ext/polars/src/lib.rs +11 -15
- data/ext/polars/src/series/general.rs +3 -15
- data/ext/polars/src/series/import.rs +1 -1
- data/lib/polars/data_frame.rb +179 -51
- data/lib/polars/data_types.rb +1 -1
- data/lib/polars/functions/aggregation/horizontal.rb +10 -4
- data/lib/polars/functions/lazy.rb +7 -3
- data/lib/polars/io/delta.rb +126 -0
- data/lib/polars/lazy_frame.rb +35 -5
- data/lib/polars/selectors.rb +85 -3
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +15 -0
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd28fce84de5645e4e99afda27a2f1a8842cb1ddaa8076dc60e5ceec7c090cb1
|
4
|
+
data.tar.gz: b92736395e7ac8d38372a34e14e7692936ec5766ff32955b2341d857c82faa56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5798edc516679fab6098b6c6f60f8dabb0c9c9af274dc6157f53de29a8c221a83f677787c5c6fa7f68dac2145f6ce77f48ef1408734456dee8ab2313d5ad9ef7
|
7
|
+
data.tar.gz: 540a851e2a563b0c14a054fc6855fba65b12d23c4b663752d16d8c0c708e338a8ed064916a469287253efa7e21794010129d8e05d8b3fbcc66755281354c1f43
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 0.16.0 (2024-12-29)
|
2
|
+
|
3
|
+
- Updated Polars to 0.45.1
|
4
|
+
- Added support for Ruby 3.4
|
5
|
+
- Added experimental support for Delta Lake
|
6
|
+
- Added `by_name` selector
|
7
|
+
- Added `thread_pool_size` method to `Polars`
|
8
|
+
- Removed `axis` option from `min`, `max`, `sum`, and `mean` methods (use `*_horizontal` instead)
|
9
|
+
- Dropped support for Ruby < 3.2
|
10
|
+
|
1
11
|
## 0.15.0 (2024-11-20)
|
2
12
|
|
3
13
|
- Updated Polars to 0.44.2
|