pub trait MinMaxHorizontal {
// Required methods
fn min_horizontal(&self) -> PolarsResult<Option<Column>>;
fn max_horizontal(&self) -> PolarsResult<Option<Column>>;
}
Required Methods§
Sourcefn min_horizontal(&self) -> PolarsResult<Option<Column>>
fn min_horizontal(&self) -> PolarsResult<Option<Column>>
Aggregate the column horizontally to their min values.
Sourcefn max_horizontal(&self) -> PolarsResult<Option<Column>>
fn max_horizontal(&self) -> PolarsResult<Option<Column>>
Aggregate the column horizontally to their max values.