Trait ArgAgg
Other items inpolars_core::chunked_array::ops
pub trait ArgAgg { fn arg_min(&self) -> Option<usize> { ... } fn arg_max(&self) -> Option<usize> { ... } }
Argmin/ Argmax
fn arg_min(&self) -> Option<usize>
Get the index of the minimal value
fn arg_max(&self) -> Option<usize>
Get the index of the maximal value
impl ArgAgg for BooleanChunked
impl ArgAgg for CategoricalChunked
impl ArgAgg for ListChunked
impl ArgAgg for Utf8Chunked
impl<T> ArgAgg for ChunkedArray<T> where T: PolarsNumericType,
impl<T> ArgAgg for ObjectChunked<T>