polars_ops::series

Trait MinMaxHorizontal

Source
pub trait MinMaxHorizontal {
    // Required methods
    fn min_horizontal(&self) -> PolarsResult<Option<Column>>;
    fn max_horizontal(&self) -> PolarsResult<Option<Column>>;
}

Required Methods§

Source

fn min_horizontal(&self) -> PolarsResult<Option<Column>>

Aggregate the column horizontally to their min values.

Source

fn max_horizontal(&self) -> PolarsResult<Option<Column>>

Aggregate the column horizontally to their max values.

Implementations on Foreign Types§

Source§

impl MinMaxHorizontal for DataFrame

Source§

fn min_horizontal(&self) -> PolarsResult<Option<Column>>

Source§

fn max_horizontal(&self) -> PolarsResult<Option<Column>>

Implementors§