Skip to main content

MinMaxHorizontal

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

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§