polars-df 0.7.0-aarch64-linux → 0.9.0-aarch64-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 +41 -0
- data/Cargo.lock +353 -237
- data/Cargo.toml +0 -3
- data/LICENSE-THIRD-PARTY.txt +1978 -1459
- data/LICENSE.txt +1 -1
- data/README.md +2 -2
- 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/array_expr.rb +449 -0
- data/lib/polars/array_name_space.rb +346 -0
- data/lib/polars/cat_expr.rb +24 -0
- data/lib/polars/cat_name_space.rb +75 -0
- data/lib/polars/config.rb +2 -2
- data/lib/polars/data_frame.rb +248 -108
- data/lib/polars/data_types.rb +195 -29
- data/lib/polars/date_time_expr.rb +41 -24
- data/lib/polars/date_time_name_space.rb +12 -12
- data/lib/polars/exceptions.rb +12 -1
- data/lib/polars/expr.rb +1080 -195
- data/lib/polars/functions/aggregation/horizontal.rb +246 -0
- data/lib/polars/functions/aggregation/vertical.rb +282 -0
- data/lib/polars/functions/as_datatype.rb +248 -0
- data/lib/polars/functions/col.rb +47 -0
- data/lib/polars/functions/eager.rb +182 -0
- data/lib/polars/functions/lazy.rb +1280 -0
- data/lib/polars/functions/len.rb +49 -0
- data/lib/polars/functions/lit.rb +35 -0
- data/lib/polars/functions/random.rb +16 -0
- data/lib/polars/functions/range/date_range.rb +103 -0
- data/lib/polars/functions/range/int_range.rb +51 -0
- data/lib/polars/functions/repeat.rb +144 -0
- data/lib/polars/functions/whenthen.rb +27 -0
- data/lib/polars/functions.rb +29 -416
- data/lib/polars/group_by.rb +3 -3
- data/lib/polars/io.rb +21 -28
- data/lib/polars/lazy_frame.rb +390 -76
- data/lib/polars/list_expr.rb +152 -6
- data/lib/polars/list_name_space.rb +102 -0
- data/lib/polars/meta_expr.rb +175 -7
- data/lib/polars/series.rb +557 -59
- data/lib/polars/sql_context.rb +1 -1
- data/lib/polars/string_cache.rb +75 -0
- data/lib/polars/string_expr.rb +412 -96
- data/lib/polars/string_name_space.rb +4 -4
- data/lib/polars/struct_expr.rb +1 -1
- data/lib/polars/struct_name_space.rb +1 -1
- data/lib/polars/testing.rb +507 -0
- data/lib/polars/utils.rb +64 -20
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +15 -2
- metadata +36 -7
- data/lib/polars/lazy_functions.rb +0 -1197
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d0eb17acfbab24c73dc7d15417f73cfab8747adf10e8d1b53dac2a0be30eb9a
|
4
|
+
data.tar.gz: b2e1da1d29a6ab383a8217c24ed7c74813fec165c7248dd16aae4042df9f60dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a5ddbaf07ab1f813847907408060d3e173b91ab35e81e5a1bf6616c0941fec9133bd9b803e376457f72ae97dd74f23915ac3b2d18fb87d2f1d6a02220be0d7b
|
7
|
+
data.tar.gz: 98934028609a84f3e5f40d3c7ea4e0e5b21869dd56f8398a593f43ae27eb3d3230fc6689f0a4b445aa585ee06227e5fd7ab96c212207267ca777dbac684d2613
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,44 @@
|
|
1
|
+
## 0.9.0 (2024-03-03)
|
2
|
+
|
3
|
+
See the [upgrade guide](https://docs.pola.rs/releases/upgrade/0.20/)
|
4
|
+
|
5
|
+
- Updated Polars to 0.38.1
|
6
|
+
- Changed `count` method to exclude null values
|
7
|
+
- Changed `dtype` and `schema` methods to always return instances of data types
|
8
|
+
- Added `Enum` type
|
9
|
+
- Added `Testing` module
|
10
|
+
- Added `arctan2`, `arctan2d`, `set_random_seed`, and `sql_expr` methods to `Polars`
|
11
|
+
- Added `enable_string_cache`, `disable_string_cache`, and `using_string_cache` to `Polars`
|
12
|
+
- Added methods for horizontal aggregations to `Polars`
|
13
|
+
- Added `sink_ipc`, `sink_csv`, and `sink_ndjson` methods to `LazyFrame`
|
14
|
+
- Added `replace` method to `Series` and `Expr`
|
15
|
+
- Added `eq`, `eq_missing`, `ne`, and `ne_missing` methods to `Series` and `Expr`
|
16
|
+
- Added `ge`, `gt`, `le`, and `lt` methods to `Series` and `Expr`
|
17
|
+
- Added `merge_sorted` method to `DataFrame` and `LazyFrame`
|
18
|
+
- Added more methods to `ArrayExpr` and `ArrayNameSpace`
|
19
|
+
- Added more methods to `CatExpr` and `CatNameSpace`
|
20
|
+
- Added more methods to `ListExpr` and `ListNameSpace`
|
21
|
+
- Added more methods to `MetaExpr`
|
22
|
+
- Added more methods to `StringExpr`
|
23
|
+
- Added `schema_overrides` option to `read_database` method
|
24
|
+
- Added `join_nulls` option to `join` method
|
25
|
+
- Added `ignore_nulls` option to `any` and `all` methods
|
26
|
+
- Aliased `apply` to `map_elements` for `Series`
|
27
|
+
- Aliased `cleared` to `clear` for `DataFrame` and `LazyFrame`
|
28
|
+
- Fixed error with `BigDecimal` objects
|
29
|
+
|
30
|
+
## 0.8.0 (2024-01-10)
|
31
|
+
|
32
|
+
- Updated Polars to 0.36.2
|
33
|
+
- Added support for Ruby 3.3
|
34
|
+
- Added warning to `count` method for `Series` and `Expr` about excluding null values in 0.9.0
|
35
|
+
- Added `cut` and `qcut` methods to `Series` and `Expr`
|
36
|
+
- Added `rle` and `rle_id` methods to `Series` and `Expr`
|
37
|
+
- Added `bottom_k` method to `Series`
|
38
|
+
- Aliased `Utf8` data type to `String`
|
39
|
+
- Fixed error with `top_k` method
|
40
|
+
- Dropped support for Ruby < 3.1
|
41
|
+
|
1
42
|
## 0.7.0 (2023-11-17)
|
2
43
|
|
3
44
|
- Updated Polars to 0.35.2
|