polars::prelude

Trait MinMaxHorizontal

Source
pub trait MinMaxHorizontal {
    // Required methods
    fn min_horizontal(&self) -> Result<Option<Column>, PolarsError>;
    fn max_horizontal(&self) -> Result<Option<Column>, PolarsError>;
}
Available on crate feature polars-ops only.

Required Methods§

Source

fn min_horizontal(&self) -> Result<Option<Column>, PolarsError>

Aggregate the column horizontally to their min values.

Source

fn max_horizontal(&self) -> Result<Option<Column>, PolarsError>

Aggregate the column horizontally to their max values.

Implementors§