Class: Polars::ArrayNameSpace
- Inherits:
-
Object
- Object
- Polars::ArrayNameSpace
- Defined in:
- lib/polars/array_name_space.rb
Overview
Series.arr namespace.
Instance Method Summary collapse
-
#max ⇒ Series
Compute the max values of the sub-arrays.
-
#min ⇒ Series
Compute the min values of the sub-arrays.
-
#sum ⇒ Series
Compute the sum values of the sub-arrays.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Polars::ExprDispatch
Instance Method Details
#max ⇒ Series
Compute the max values of the sub-arrays.
49 50 51 |
# File 'lib/polars/array_name_space.rb', line 49 def max super end |
#min ⇒ Series
Compute the min values of the sub-arrays.
29 30 31 |
# File 'lib/polars/array_name_space.rb', line 29 def min super end |
#sum ⇒ Series
Compute the sum values of the sub-arrays.
73 74 75 |
# File 'lib/polars/array_name_space.rb', line 73 def sum super end |