polars-df 0.7.0-aarch64-linux → 0.9.0-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- 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
data/lib/polars.rb
CHANGED
@@ -30,10 +30,22 @@ require_relative "polars/dynamic_group_by"
|
|
30
30
|
require_relative "polars/exceptions"
|
31
31
|
require_relative "polars/expr"
|
32
32
|
require_relative "polars/functions"
|
33
|
+
require_relative "polars/functions/as_datatype"
|
34
|
+
require_relative "polars/functions/col"
|
35
|
+
require_relative "polars/functions/eager"
|
36
|
+
require_relative "polars/functions/lazy"
|
37
|
+
require_relative "polars/functions/len"
|
38
|
+
require_relative "polars/functions/lit"
|
39
|
+
require_relative "polars/functions/random"
|
40
|
+
require_relative "polars/functions/repeat"
|
41
|
+
require_relative "polars/functions/whenthen"
|
42
|
+
require_relative "polars/functions/aggregation/horizontal"
|
43
|
+
require_relative "polars/functions/aggregation/vertical"
|
44
|
+
require_relative "polars/functions/range/date_range"
|
45
|
+
require_relative "polars/functions/range/int_range"
|
33
46
|
require_relative "polars/group_by"
|
34
47
|
require_relative "polars/io"
|
35
48
|
require_relative "polars/lazy_frame"
|
36
|
-
require_relative "polars/lazy_functions"
|
37
49
|
require_relative "polars/lazy_group_by"
|
38
50
|
require_relative "polars/list_expr"
|
39
51
|
require_relative "polars/list_name_space"
|
@@ -43,10 +55,12 @@ require_relative "polars/rolling_group_by"
|
|
43
55
|
require_relative "polars/series"
|
44
56
|
require_relative "polars/slice"
|
45
57
|
require_relative "polars/sql_context"
|
58
|
+
require_relative "polars/string_cache"
|
46
59
|
require_relative "polars/string_expr"
|
47
60
|
require_relative "polars/string_name_space"
|
48
61
|
require_relative "polars/struct_expr"
|
49
62
|
require_relative "polars/struct_name_space"
|
63
|
+
require_relative "polars/testing"
|
50
64
|
require_relative "polars/utils"
|
51
65
|
require_relative "polars/version"
|
52
66
|
require_relative "polars/when"
|
@@ -56,5 +70,4 @@ module Polars
|
|
56
70
|
extend Convert
|
57
71
|
extend Functions
|
58
72
|
extend IO
|
59
|
-
extend LazyFunctions
|
60
73
|
end
|
metadata
CHANGED
@@ -1,15 +1,30 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: polars-df
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: aarch64-linux
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
11
|
+
date: 2024-03-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bigdecimal
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
force_ruby_platform: false
|
13
28
|
description:
|
14
29
|
email: andrew@ankane.org
|
15
30
|
executables: []
|
@@ -25,9 +40,9 @@ files:
|
|
25
40
|
- README.md
|
26
41
|
- lib/polars-df.rb
|
27
42
|
- lib/polars.rb
|
28
|
-
- lib/polars/3.0/polars.so
|
29
43
|
- lib/polars/3.1/polars.so
|
30
44
|
- lib/polars/3.2/polars.so
|
45
|
+
- lib/polars/3.3/polars.so
|
31
46
|
- lib/polars/array_expr.rb
|
32
47
|
- lib/polars/array_name_space.rb
|
33
48
|
- lib/polars/batched_csv_reader.rb
|
@@ -46,10 +61,22 @@ files:
|
|
46
61
|
- lib/polars/expr.rb
|
47
62
|
- lib/polars/expr_dispatch.rb
|
48
63
|
- lib/polars/functions.rb
|
64
|
+
- lib/polars/functions/aggregation/horizontal.rb
|
65
|
+
- lib/polars/functions/aggregation/vertical.rb
|
66
|
+
- lib/polars/functions/as_datatype.rb
|
67
|
+
- lib/polars/functions/col.rb
|
68
|
+
- lib/polars/functions/eager.rb
|
69
|
+
- lib/polars/functions/lazy.rb
|
70
|
+
- lib/polars/functions/len.rb
|
71
|
+
- lib/polars/functions/lit.rb
|
72
|
+
- lib/polars/functions/random.rb
|
73
|
+
- lib/polars/functions/range/date_range.rb
|
74
|
+
- lib/polars/functions/range/int_range.rb
|
75
|
+
- lib/polars/functions/repeat.rb
|
76
|
+
- lib/polars/functions/whenthen.rb
|
49
77
|
- lib/polars/group_by.rb
|
50
78
|
- lib/polars/io.rb
|
51
79
|
- lib/polars/lazy_frame.rb
|
52
|
-
- lib/polars/lazy_functions.rb
|
53
80
|
- lib/polars/lazy_group_by.rb
|
54
81
|
- lib/polars/list_expr.rb
|
55
82
|
- lib/polars/list_name_space.rb
|
@@ -60,10 +87,12 @@ files:
|
|
60
87
|
- lib/polars/series.rb
|
61
88
|
- lib/polars/slice.rb
|
62
89
|
- lib/polars/sql_context.rb
|
90
|
+
- lib/polars/string_cache.rb
|
63
91
|
- lib/polars/string_expr.rb
|
64
92
|
- lib/polars/string_name_space.rb
|
65
93
|
- lib/polars/struct_expr.rb
|
66
94
|
- lib/polars/struct_name_space.rb
|
95
|
+
- lib/polars/testing.rb
|
67
96
|
- lib/polars/utils.rb
|
68
97
|
- lib/polars/version.rb
|
69
98
|
- lib/polars/when.rb
|
@@ -80,10 +109,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
109
|
requirements:
|
81
110
|
- - ">="
|
82
111
|
- !ruby/object:Gem::Version
|
83
|
-
version: '3.
|
112
|
+
version: '3.1'
|
84
113
|
- - "<"
|
85
114
|
- !ruby/object:Gem::Version
|
86
|
-
version: 3.
|
115
|
+
version: 3.4.dev
|
87
116
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
117
|
requirements:
|
89
118
|
- - ">="
|