Class: Polars::ArrayExpr
- Inherits:
-
Object
- Object
- Polars::ArrayExpr
- Defined in:
- lib/polars/array_expr.rb
Overview
Namespace for array related expressions.
Instance Method Summary collapse
-
#max ⇒ Expr
Compute the max values of the sub-arrays.
-
#min ⇒ Expr
Compute the min values of the sub-arrays.
-
#sum ⇒ Expr
Compute the sum values of the sub-arrays.
Instance Method Details
#max ⇒ Expr
Compute the max values of the sub-arrays.
56 57 58 |
# File 'lib/polars/array_expr.rb', line 56 def max Utils.wrap_expr(_rbexpr.array_max) end |
#min ⇒ Expr
Compute the min values of the sub-arrays.
32 33 34 |
# File 'lib/polars/array_expr.rb', line 32 def min Utils.wrap_expr(_rbexpr.array_min) end |
#sum ⇒ Expr
Compute the sum values of the sub-arrays.
80 81 82 |
# File 'lib/polars/array_expr.rb', line 80 def sum Utils.wrap_expr(_rbexpr.array_sum) end |