Method: Polars::ArrayNameSpace#get
- Defined in:
- lib/polars/array_name_space.rb
#get(index, null_on_oob: false) ⇒ Series
Get the value by index in the sub-arrays.
So index 0 would return the first item of every sublist
and index -1 would return the last item of every sublist
if an index is out of bounds, it will return a nil.
518 519 520 |
# File 'lib/polars/array_name_space.rb', line 518 def get(index, null_on_oob: false) super end |