polars-df 0.16.0-x86_64-linux-musl → 0.17.1-x86_64-linux-musl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/Cargo.lock +225 -238
- data/LICENSE-THIRD-PARTY.txt +1900 -2234
- data/LICENSE.txt +1 -1
- data/README.md +4 -4
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/3.4/polars.so +0 -0
- data/lib/polars/data_frame.rb +321 -23
- data/lib/polars/data_types.rb +4 -0
- data/lib/polars/expr.rb +31 -0
- data/lib/polars/functions/eager.rb +145 -16
- data/lib/polars/io/database.rb +17 -0
- data/lib/polars/lazy_frame.rb +74 -9
- data/lib/polars/schema.rb +29 -0
- data/lib/polars/series.rb +31 -24
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4efdce605a6e36bfd977883bdb67187b639a0c527f78764d97ba2d00e313a5e
|
4
|
+
data.tar.gz: 03e2f164668f5bd33e02849665ecd0702df3d0744b3af23a900fb00b34e09d46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78fe1a2fce79f57579633e5b82e117961cb5f0c6e4c0d0e2af60f316652bb7d263c8a88fe4b69a6d2dce2499907c7cc500c795a4c5f2d8227acce2ac2223900c
|
7
|
+
data.tar.gz: fdc9164c6d61c0ba34bcdff3a7981e4065abda4a9c7817c22e502fe4fafb86e15dcfe4d33cdd52830d597ad2e284f32dcb64bb4c30e1844bc0a6a5b37efc5d56
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
## 0.17.1 (2025-04-12)
|
2
|
+
|
3
|
+
- Added support for horizontal concatenation of `LazyFrame`s
|
4
|
+
- Added `diagonal_relaxed` and `align` strategies to `concat` method
|
5
|
+
- Added `interpolate_by` method to `Series` and `Expr`
|
6
|
+
- Added `iter_columns` and `iter_slices` methods to `DataFrame`
|
7
|
+
- Added `maintain_order` option to `join` method
|
8
|
+
- Added `collect_schema` method to `DataFrame`
|
9
|
+
- Added `write_database` method to `DataFrame` (experimental)
|
10
|
+
- Fixed error with `to_numo` method for `Boolean` series with null values
|
11
|
+
- Fixed error with `slice` method and negative offset
|
12
|
+
|
13
|
+
## 0.17.0 (2025-01-28)
|
14
|
+
|
15
|
+
- Updated Polars to 0.46.0
|
16
|
+
- Changed `write_json` method for `DataFrame` to be row-oriented
|
17
|
+
- Fixed error with `Series` constructor and `strict: false`
|
18
|
+
|
1
19
|
## 0.16.0 (2024-12-29)
|
2
20
|
|
3
21
|
- Updated Polars to 0.45.1
|