polars-df 0.7.0-x86_64-linux → 0.8.0-x86_64-linux
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 +12 -0
- data/Cargo.lock +284 -216
- data/LICENSE-THIRD-PARTY.txt +717 -1170
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/{3.0 → 3.3}/polars.so +0 -0
- data/lib/polars/data_frame.rb +69 -65
- data/lib/polars/data_types.rb +4 -1
- data/lib/polars/date_time_expr.rb +10 -10
- data/lib/polars/date_time_name_space.rb +12 -12
- data/lib/polars/expr.rb +223 -18
- data/lib/polars/group_by.rb +1 -1
- data/lib/polars/io.rb +4 -4
- data/lib/polars/lazy_frame.rb +23 -23
- data/lib/polars/lazy_functions.rb +4 -20
- data/lib/polars/series.rb +289 -30
- data/lib/polars/sql_context.rb +1 -1
- data/lib/polars/struct_expr.rb +1 -1
- data/lib/polars/struct_name_space.rb +1 -1
- data/lib/polars/utils.rb +13 -13
- data/lib/polars/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 531c36f1e61d0ed3fbf45fb36069159676eae15a220259f44e7214ae828ce20e
|
4
|
+
data.tar.gz: a966c92dc5764a1284dfc1323f9ae725eb04bb9ef52ad0701c4cb6d12d6cc65c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3a158b0499182fe3813f26ab575addce52519ef4936addf847e1acd1e26798be2b193d9c578fea878e586b73b9ac2deb8bd079f1b45aa7007001dd8bc5e03ba
|
7
|
+
data.tar.gz: f6a13cf105f04882cda2ae0e480f8c7dfb1deaf83f45c468828e26fc26c9857f2b1778c8d5b37cfa2afa695285d573019a4ba6947c6710062bb8759311cd8a3e
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
## 0.8.0 (2023-01-10)
|
2
|
+
|
3
|
+
- Updated Polars to 0.36.2
|
4
|
+
- Added support for Ruby 3.3
|
5
|
+
- Added warning to `count` method for `Series` and `Expr` about excluding null values in 0.9.0
|
6
|
+
- Added `cut` and `qcut` methods to `Series` and `Expr`
|
7
|
+
- Added `rle` and `rle_id` methods to `Series` and `Expr`
|
8
|
+
- Added `bottom_k` method to `Series`
|
9
|
+
- Aliased `Utf8` data type to `String`
|
10
|
+
- Fixed error with `top_k` method
|
11
|
+
- Dropped support for Ruby < 3.1
|
12
|
+
|
1
13
|
## 0.7.0 (2023-11-17)
|
2
14
|
|
3
15
|
- Updated Polars to 0.35.2
|