polars-df 0.14.0-aarch64-linux-musl → 0.16.0-aarch64-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 +35 -0
- data/Cargo.lock +1523 -378
- data/LICENSE-THIRD-PARTY.txt +23495 -12923
- data/LICENSE.txt +1 -0
- data/README.md +38 -4
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/{3.1 → 3.4}/polars.so +0 -0
- data/lib/polars/batched_csv_reader.rb +0 -2
- data/lib/polars/binary_expr.rb +133 -9
- data/lib/polars/binary_name_space.rb +101 -6
- data/lib/polars/config.rb +4 -0
- data/lib/polars/data_frame.rb +452 -101
- data/lib/polars/data_type_group.rb +28 -0
- data/lib/polars/data_types.rb +3 -1
- data/lib/polars/date_time_expr.rb +244 -0
- data/lib/polars/date_time_name_space.rb +87 -0
- data/lib/polars/expr.rb +103 -2
- data/lib/polars/functions/aggregation/horizontal.rb +10 -4
- data/lib/polars/functions/as_datatype.rb +51 -2
- data/lib/polars/functions/col.rb +1 -1
- data/lib/polars/functions/eager.rb +1 -3
- data/lib/polars/functions/lazy.rb +95 -13
- data/lib/polars/functions/range/time_range.rb +21 -21
- data/lib/polars/io/csv.rb +14 -16
- data/lib/polars/io/database.rb +2 -2
- data/lib/polars/io/delta.rb +126 -0
- data/lib/polars/io/ipc.rb +14 -4
- data/lib/polars/io/ndjson.rb +10 -0
- data/lib/polars/io/parquet.rb +168 -111
- data/lib/polars/lazy_frame.rb +684 -20
- data/lib/polars/list_name_space.rb +169 -0
- data/lib/polars/selectors.rb +1226 -0
- data/lib/polars/series.rb +465 -35
- data/lib/polars/string_cache.rb +27 -1
- data/lib/polars/string_expr.rb +0 -1
- data/lib/polars/string_name_space.rb +73 -3
- data/lib/polars/struct_name_space.rb +31 -7
- data/lib/polars/utils/various.rb +5 -1
- data/lib/polars/utils.rb +45 -10
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +17 -1
- metadata +10 -9
- data/lib/polars/functions.rb +0 -57
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c38fcbabe4eb70d80ca98751fa335e126eca3015b7d3ffbe30ab811d1300125d
|
4
|
+
data.tar.gz: 54e5ad10aba88f5ff9417ea770559f90f3889c601e856d3a439b35fd3ff4ad06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ad8a299518c4b58c46faeb21fd5cad58acc2574c91c26bdae42bb4ba874c4656a035a3c3806b2b5cf5a041a024c3be3a71524d5e6f07b57b9ba66c4c84a8f4c
|
7
|
+
data.tar.gz: ae99154d57a19e2cf141397cf2c980b3fb9c27ffe9c389c7d82cf36c13f89b1dae4e2feeb31f723819f118b388e12601649a1bac7e51a2a1b9d315a6cd5c1a09
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,38 @@
|
|
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
|
+
|
11
|
+
## 0.15.0 (2024-11-20)
|
12
|
+
|
13
|
+
- Updated Polars to 0.44.2
|
14
|
+
- I/O methods no longer require a `URI` object for remote files
|
15
|
+
- Added support for scanning files from cloud storage
|
16
|
+
- Added experimental support for Arrow C streams
|
17
|
+
- Added selectors
|
18
|
+
- Added `config`, `string_cache`, and `cs` methods to `Polars`
|
19
|
+
- Added `strict` option to `DataFrame` constructor
|
20
|
+
- Added `compat_level` option to `write_ipc` and `write_ipc_stream` methods
|
21
|
+
- Added `name` option to `write_avro` method
|
22
|
+
- Added support for array of name-type pairs to `schema` option
|
23
|
+
- Added `cast` method to `DataFrame` and `LazyFrame`
|
24
|
+
- Added `coalesce` option to `join` and `join_asof` methods
|
25
|
+
- Added `validate` option to `join` method
|
26
|
+
- Added `strict` option to `rename` method
|
27
|
+
- Changed `rechunk` option default from `true` to `false` for `scan_parquet` method
|
28
|
+
- Fixed `limit` method for `LazyFrame`
|
29
|
+
- Fixed `read_database` connection leasing for Active Record 7.2
|
30
|
+
- Removed `get_dummies` method from `Polars` (use `df.to_dummies` instead)
|
31
|
+
- Removed `to_list` method from `Polars` (use `col(name).list` instead)
|
32
|
+
- Removed `spearman_rank_corr` method from `Polars` (use `corr(method: "spearman")` instead)
|
33
|
+
- Removed `pearson_corr` method from `Polars` (use `corr(method: "pearson")` instead)
|
34
|
+
- Removed `inner_dtype` and `time_unit` methods from `Series`
|
35
|
+
|
1
36
|
## 0.14.0 (2024-09-17)
|
2
37
|
|
3
38
|
- Updated Polars to 0.43.1
|